Package com.sleepycat.db
Interface ErrorHandler
public interface ErrorHandler
An interface specifying a callback function to be called when an error
occurs in the Berkeley DB library.
-
Method Summary
Modifier and TypeMethodDescriptionvoiderror(Environment environment, String errpfx, String msg) A callback function to be called when an error occurs in the Berkeley DB library.
-
Method Details
-
error
A callback function to be called when an error occurs in the Berkeley DB library.When an error occurs in the Berkeley DB library, an exception is thrown. In some cases, however, the exception may be insufficient to completely describe the cause of the error, especially during initial application debugging.
The
EnvironmentConfig.setErrorHandlerandDatabaseConfig.setErrorHandlermethods are used to enhance the mechanism for reporting error messages to the application. In some cases, when an error occurs, Berkeley DB will invoke the ErrorHandler's object error method. It is up to this method to display the error message in an appropriate manner.- Parameters:
environment- The enclosing database environment handle.errpfx- The prefix string, as previously configured byEnvironmentConfig.setErrorPrefixorDatabaseConfig.setErrorPrefix.msg- An error message string.
-