Class MappingException

All Implemented Interfaces:
Serializable

public class MappingException extends DataException
A mapping exception is one thrown if an issue exists at runtime or build time in the data mapping.
See Also:
  • Constructor Details

    • MappingException

      public MappingException(String message)
      Constructs a new MappingException exception with the specified detail message.
      Parameters:
      message - the detail message.
    • MappingException

      public MappingException(String message, Throwable cause)
      Constructs a new MappingException exception with the specified detail message.
      Parameters:
      message - the detail message.
      cause - another exception or error that caused this exception. Null indicates that no other cause is specified.
    • MappingException

      public MappingException(Throwable cause)
      Constructs a new MappingException exception with the specified cause.
      Parameters:
      cause - the cause.