public class SymbolException
extends java.lang.RuntimeException
try-catch block. Note that this places an additional burden
on the designer of a function library to keep the library simple in terms
of its runtime function lookup and invocation requirements.| Constructor and Description |
|---|
SymbolException(java.lang.String message)
Constructor which accepts an error message.
|
SymbolException(java.lang.String message,
java.lang.Throwable rootCause)
Constructor which accepts an error message and a root cause.
|
SymbolException(java.lang.Throwable rootCause)
Constructor which accepts and wrappers a root cause.
|
public SymbolException(java.lang.String message)
message - Error message.public SymbolException(java.lang.String message,
java.lang.Throwable rootCause)
message - Error message.rootCause - Exception which has been caught in the course of trying to
perform some symbol processing.public SymbolException(java.lang.Throwable rootCause)
rootCause - Exception which has been caught in the course of trying to
perform some symbol processing.