public interface InternalErrorReporter
NullPointerException
or
IndexOutOfBoundsException
.Modifier and Type | Method and Description |
---|---|
int |
getNumInternalErrors()
Get the number of internal errors reported with this error manager
since it was created.
|
void |
internalError(java.lang.Exception e)
Report an error in the operation of the client task itself.
|
void |
internalError(java.lang.String message)
Report an error in the operation of the client task itself.
|
void internalError(java.lang.String message)
message
- The error message.void internalError(java.lang.Exception e)
e
- The exception that caused the error.int getNumInternalErrors()
InternalErrorReporter
.