org.exolab.adaptx.util
public abstract class ErrorObserverAdapter extends Object implements ErrorObserver
Version: $Revision: 3633 $ $Date: 2003-03-01 02:38:44 -0500 (Sat, 01 Mar 2003) $
Method Summary | |
---|---|
void | addErrorObserver(ErrorObserver observer)
Adds the given ErrorObserver to this DefaultObserver |
void | receiveError(Exception exception)
Signals an error with normal level
|
void | receiveError(Exception exception, String message)
Signals an error with normal level
|
void | receiveError(Exception exception, int level)
Signals an error with the given error level
|
void | receiveError(Exception exception, String message, int level)
Signals an error with the given error level
|
void | receiveError(String message)
Signals an error message with normal level
|
void | receiveError(String message, int level)
Signals an error with the given error level
|
void | removeAllErrorObservers()
Removes all the ErrorObservers from the cascading
ErrorObserver list
|
void | removeErrorObserver(ErrorObserver observer)
Removes the given ErrorObserver from the cascading
ErrorObserver list |
Parameters: observer the ErrorObserver to add
Parameters: exception the Exception that caused the error
Parameters: exception the Exception that caused the error message an option message, used when additional information can be provided.
Parameters: exception the Exception that caused the error level the error level
Parameters: exception the Exception that caused the error message an option message, used when additional information can be provided. level the error level
Parameters: message the error message
Parameters: message the error message level the error level
Parameters: observer the ErrorObserver to remove