public interface InfoManager
Modifier and Type | Method and Description |
---|---|
void |
readClassNotFoundException(java.lang.ClassNotFoundException e)
This is an abstract method for recording ClassNotFoundException messages.
|
void |
readFileNotFoundException(java.io.FileNotFoundException e)
This is an abstract method for recording FileNotFoundException messages.
|
void |
readIOException(java.io.IOException e)
This is an abstract method for recording IOException messages.
|
void |
readMessage(java.lang.String m)
This is an abstract method for recording specified messages.
|
void readMessage(java.lang.String m)
m
- the message that is going to be processed.void readIOException(java.io.IOException e)
e
- the IOException message that is going to be processed.void readFileNotFoundException(java.io.FileNotFoundException e)
e
- the FileNotFoundException message that is going to be processed.void readClassNotFoundException(java.lang.ClassNotFoundException e)
e
- the ClassNotFoundException message that is going to be processed.