public interface LgMessageDirectorIF
Modifier and Type | Method and Description |
---|---|
void |
busy()
Output to indicate system is busy - spin a cursor, print a dot, etc.
|
java.lang.String |
debug(java.lang.String message)
Take a debug message.
|
java.lang.String |
error(java.lang.String message)
Display a non-fatal error to the user.
|
java.lang.String |
error(java.lang.String message,
java.lang.Throwable sourceException)
Display a non-fatal error to the user
|
java.lang.String |
fatal(java.lang.String message)
Display a fatal error to the user.
|
java.lang.String |
fatal(java.lang.String message,
java.lang.Throwable sourceException)
Display a fatal error to the user.
|
void |
fatalAndThrowException(java.lang.String message)
Display a fatal error to the user - and then throw an exception.
|
void |
fatalAndThrowException(java.lang.String message,
java.lang.Throwable sourceException)
Display a fatal error to the user - and then throw an exception.
|
java.lang.String |
info(java.lang.String message)
Displays a status type of message (not an error or a warning)
|
java.lang.String |
warn(java.lang.String message)
Display a warning to the user.
|
java.lang.String |
warn(java.lang.String message,
java.lang.Throwable sourceException)
Display a warning to the user
|
void busy()
java.lang.String info(java.lang.String message)
java.lang.String debug(java.lang.String message)
java.lang.String warn(java.lang.String message)
java.lang.String warn(java.lang.String message, java.lang.Throwable sourceException)
sourceException
- The source exception that caused the warningjava.lang.String error(java.lang.String message)
java.lang.String error(java.lang.String message, java.lang.Throwable sourceException)
sourceException
- The source exception that caused the error.java.lang.String fatal(java.lang.String message)
java.lang.String fatal(java.lang.String message, java.lang.Throwable sourceException)
sourceException
- The source exception that caused the error.void fatalAndThrowException(java.lang.String message) throws java.lang.Exception
java.lang.Exception
void fatalAndThrowException(java.lang.String message, java.lang.Throwable sourceException) throws java.lang.Exception
sourceException
- The source exception that caused the error.java.lang.Exception