DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 
Berkeley DB
version 4.4.20

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
 void error(Environment environment, String errpfx, String msg)
          A callback function to be called when an error occurs in the Berkeley DB library.
 

Method Detail

error

public void error(Environment environment,
                  String errpfx,
                  String msg)
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.setErrorHandler and DatabaseConfig.setErrorHandler methods 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 by EnvironmentConfig.setErrorPrefix or DatabaseConfig.setErrorPrefix.

msg - An error message string.

Berkeley DB
version 4.4.20

Copyright (c) 1996-2005 Sleepycat Software, Inc. - All rights reserved.