public abstract class LogChannel
extends java.lang.Object
| Constructor and Description |
|---|
LogChannel() |
| Modifier and Type | Method and Description |
|---|---|
protected abstract void |
createLogChannel()
Create the log channel.
|
abstract void |
writeError(java.lang.String message)
Write an exception to the log channel.
|
abstract void |
writeMessage(java.lang.String message)
Write the message to the log channel.
|
protected abstract void createLogChannel()
throws java.lang.Exception
java.lang.Exception - any error.public abstract void writeMessage(java.lang.String message)
throws java.lang.Exception
message - the message to write.java.lang.Exception - any error.public abstract void writeError(java.lang.String message)
throws java.lang.Exception
message - the message to write.java.lang.Exception - any error.