com.microstrategy.utils.xml.MessageRouter |
![]() |
This interface represents the callback for reporting warnings and errors to the system. A MessageRouter object is passed into the various XML parsing classes to convey how errors and warnings are reported.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract void |
error(String msg)
Indicate that an error has occurred.
| ||||||||||
abstract void |
info(String msg)
Indicates an informational message.
| ||||||||||
abstract void |
warning(String msg)
Indicate that a warning has occurred.
|
Indicate that an error has occurred.
msg | The message associated with the error. |
---|
Indicates an informational message.
msg | The message associated with this information message. |
---|
Indicate that a warning has occurred.
msg | The message associated with the warning. |
---|