java.lang.Object
java.lang.Throwable
java.lang.Exception
coneforest.psylla.core.PsyErrorException
coneforest.psylla.core.PsyUndefinedException
- All Implemented Interfaces:
PsyExecutable
,PsyObject
,Serializable
The representation of the
undefined
error thrown by the operator accessing the
dictionary by the absent key or by the interpreter failing to resolve the command name against
the dictionary stack.- See Also:
-
Field Summary
Fields inherited from interface coneforest.psylla.core.PsyObject
PSY_CLONE, PSY_EQ, PSY_HASHCODE, PSY_INSTANCEOF, PSY_NE, PSY_TOSTRING, PSY_TOSTRINGBUFFER, PSY_TYPE
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newexception
object with null as its detail message.PsyUndefinedException
(Throwable cause) Constructs a newexception
object with the specified cause. -
Method Summary
Methods inherited from class coneforest.psylla.core.PsyErrorException
getEmitter, getName, invoke, setEmitter, setStacks
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface coneforest.psylla.core.PsyExecutable
asBinaryOperator, asComparator, asConsumer, asFunction, asPredicate, asSupplier, asUnaryOperator, invokeAndHandle
Methods inherited from interface coneforest.psylla.core.PsyObject
convert, execute, psyClone, psyEq, psyHashCode, psyInstanceOf, psyNe, psySyntax, psyToString, psyToStringBuffer, psyType, toSyntaxString, typeName
-
Constructor Details
-
PsyUndefinedException
public PsyUndefinedException()Constructs a newexception
object with null as its detail message. -
PsyUndefinedException
Constructs a newexception
object with the specified cause.- Parameters:
cause
- the cause.
-