All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eightkdata.mongowp.server.api.ErrorHandler Maven / Gradle / Ivy

There is a newer version: 0.50.0
Show newest version

package com.eightkdata.mongowp.server.api;

import com.eightkdata.mongowp.messages.response.ReplyMessage;
import com.eightkdata.mongowp.exceptions.MongoException;
import javax.annotation.Nullable;

/**
 *
 */
public interface ErrorHandler {

    @Nullable
    public ReplyMessage handleUnexpectedError(
            Connection connection,
            int requestId,
            boolean canReply,
            Throwable error);

    @Nullable
    public ReplyMessage handleMongodbException(
            Connection connection,
            int requestId,
            boolean canReply,
            MongoException exception);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy