Class UnmanglerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.pnfsoftware.jeb.core.exceptions.JebRuntimeException
com.pnfsoftware.jeb.core.exceptions.UnmanglerException
- All Implemented Interfaces:
Serializable
Runtime exception raised when a symbol name cannot be unmangled successfully.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreate an exception with no detail message.UnmanglerException(String message) Create an exception with a detail message.UnmanglerException(String message, Throwable cause) Create an exception with a detail message and cause.UnmanglerException(Throwable cause) Create an exception with a cause. -
Method Summary
Methods inherited from class com.pnfsoftware.jeb.core.exceptions.JebRuntimeException
getUnit, setUnit, withUnitMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnmanglerException
public UnmanglerException()Create an exception with no detail message. -
UnmanglerException
Create an exception with a detail message.- Parameters:
message- the detail message
-
UnmanglerException
Create an exception with a cause.- Parameters:
cause- the cause
-
UnmanglerException
Create an exception with a detail message and cause.- Parameters:
message- the detail messagecause- the cause
-