java.lang.Object
java.lang.Throwable
java.lang.Exception
dev.civl.abc.err.IF.ABCException
dev.civl.abc.token.IF.UnsourcedException
- All Implemented Interfaces:
Serializable
An exception for which the source (in the source program being compiled) is
unknown. The expectation is that this exception will be caught internally by
a method lower on the call stack which does know the source, and that method
will construct a SyntaxException from this exception, specifying the source.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUnsourcedException(String message) Constructs a new unsourced exception wrapping the given message -
Method Summary
Methods inherited from class dev.civl.abc.err.IF.ABCException
toStringMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
UnsourcedException
Constructs a new unsourced exception wrapping the given message- Parameters:
message- a message which will be incorporated into the final message printed to the user
-