Class MappingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.jfuncmachine.sexprlang.translate.MappingException
- All Implemented Interfaces:
Serializable
An exception coming from an S-expression mapper
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a new mapping exceptionMappingException(String message) Create a new mapping exceptionMappingException(String message, String filename, int lineNumber) Create a new mapping exceptionMappingException(String message, Throwable cause) Create a new mapping exceptionMappingException(String message, Throwable cause, String filename, int lineNumber) Create a new mapping exceptionMappingException(Throwable cause) Create a new mapping exceptionMappingException(Throwable cause, String filename, int lineNumber) Create a new mapping exception -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MappingException
public MappingException()Create a new mapping exception -
MappingException
Create a new mapping exception- Parameters:
message- The exception message
-
MappingException
Create a new mapping exception- Parameters:
message- The exception messagecause- The exception cause
-
MappingException
Create a new mapping exception- Parameters:
cause- The exception cause
-
MappingException
Create a new mapping exception- Parameters:
cause- The exception causefilename- The source filename where this exception originateslineNumber- The line number in the source file where this exception occurs
-
MappingException
Create a new mapping exception- Parameters:
message- The exception messagefilename- The source filename where this exception originateslineNumber- The line number in the source file where this exception occurs
-
MappingException
Create a new mapping exception- Parameters:
message- The exception messagecause- The exception causefilename- The source filename where this exception originateslineNumber- The line number in the source file where this exception occurs
-