
com.eightkdata.mongowp.mongoserver.api.safe.ErrorHandler Maven / Gradle / Ivy
The newest version!
package com.eightkdata.mongowp.mongoserver.api.safe;
import com.eightkdata.mongowp.messages.response.ReplyMessage;
import com.eightkdata.mongowp.mongoserver.protocol.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