![JAR search and dependency download from the Maven repository](/logo.png)
com.eightkdata.mongowp.server.api.ErrorHandler Maven / Gradle / Ivy
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