Class MappingException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.jfuncmachine.sexprlang.translate.MappingException
All Implemented Interfaces:
Serializable

public class MappingException extends Exception
An exception coming from an S-expression mapper
See Also:
  • Constructor Details

    • MappingException

      public MappingException()
      Create a new mapping exception
    • MappingException

      public MappingException(String message)
      Create a new mapping exception
      Parameters:
      message - The exception message
    • MappingException

      public MappingException(String message, Throwable cause)
      Create a new mapping exception
      Parameters:
      message - The exception message
      cause - The exception cause
    • MappingException

      public MappingException(Throwable cause)
      Create a new mapping exception
      Parameters:
      cause - The exception cause
    • MappingException

      public MappingException(Throwable cause, String filename, int lineNumber)
      Create a new mapping exception
      Parameters:
      cause - The exception cause
      filename - The source filename where this exception originates
      lineNumber - The line number in the source file where this exception occurs
    • MappingException

      public MappingException(String message, String filename, int lineNumber)
      Create a new mapping exception
      Parameters:
      message - The exception message
      filename - The source filename where this exception originates
      lineNumber - The line number in the source file where this exception occurs
    • MappingException

      public MappingException(String message, Throwable cause, String filename, int lineNumber)
      Create a new mapping exception
      Parameters:
      message - The exception message
      cause - The exception cause
      filename - The source filename where this exception originates
      lineNumber - The line number in the source file where this exception occurs