Package org.hibernate
Class InvalidMappingException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
InvalidMappingException
public classInvalidMappingExceptionextendsMappingException
Thrown when a mapping is found to be invalid.Similar to
MappingException, but contains more information about the path and type of mapping (e.g. file, resource or URL).- See Also:
- Serialized Form
Constructor Summary
Constructors Constructor Description InvalidMappingException(String customMessage,String type,String path)Constructs anInvalidMappingExceptionusing the given information.InvalidMappingException(String customMessage,String type,String path,Throwable cause)Constructs an InvalidMappingException using the given information.InvalidMappingException(String customMessage,Origin origin)Constructs anInvalidMappingExceptionusing the given information.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPath()StringgetType()Methods inherited from class java.lang.Throwable
addSuppressed,fillInStackTrace,getCause,getLocalizedMessage,getMessage,getStackTrace,getSuppressed,initCause,printStackTrace,printStackTrace,printStackTrace,setStackTrace,toString
Constructor Detail
InvalidMappingException
public InvalidMappingException(String customMessage,String type,String path,Throwable cause)
Constructs an InvalidMappingException using the given information.- Parameters:
customMessage- The custom message explaining the exception conditiontype- The type of invalid mapping documentpath- The path (type specific) of the invalid mapping documentcause- The underlying cause
InvalidMappingException
public InvalidMappingException(String customMessage,String type,String path)
Constructs anInvalidMappingExceptionusing the given information.- Parameters:
customMessage- The custom message explaining the exception conditiontype- The type of invalid mapping documentpath- The path (type specific) of the invalid mapping document