|
j3d.org Code | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ErrorReporter
Generalised interface for reporting errors of any kind that happens in the Web3D codebase.
Where methods provide both a string and exception, either of the values may be null, but not both at the same time.
Method Summary | |
---|---|
void |
errorReport(java.lang.String msg,
java.lang.Exception e)
Notification of a recoverable error. |
void |
fatalErrorReport(java.lang.String msg,
java.lang.Exception e)
Notification of a non-recoverable error that halts the entire system. |
void |
messageReport(java.lang.String msg)
Notification of an informational message from the system. |
void |
warningReport(java.lang.String msg,
java.lang.Exception e)
Notification of a warning in the way the system is currently operating. |
Method Detail |
---|
void messageReport(java.lang.String msg)
msg
- The text of the message to be displayedvoid warningReport(java.lang.String msg, java.lang.Exception e)
msg
- The text of the message to be displayede
- The exception that caused this warning. May be null
VRMLException
- This is bad enough that the reporter should stop
what they are currently doing.void errorReport(java.lang.String msg, java.lang.Exception e)
msg
- The text of the message to be displayede
- The exception that caused this warning. May be null
VRMLException
- This is bad enough that the reporter should stop
what they are currently doing.void fatalErrorReport(java.lang.String msg, java.lang.Exception e)
msg
- The text of the message to be displayede
- The exception that caused this warning. May be null
VRMLException
- This is bad enough that the reporter should stop
what they are currently doing.
|
j3d.org Code | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |