Package org.hibernate
Class InvalidMappingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.persistence.PersistenceException
-
- org.hibernate.HibernateException
-
- org.hibernate.MappingException
-
- org.hibernate.InvalidMappingException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
InvalidMappingException
public class InvalidMappingException extends MappingException
Thrown when a mapping is found to be invalid. Similar to MappingException, but this contains more info about the path and type of mapping (e.g. file, resource or url)- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidMappingException(java.lang.String type, java.lang.String path)
Constructs an InvalidMappingException using the given information and a standard message.InvalidMappingException(java.lang.String customMessage, java.lang.String type, java.lang.String path)
Constructs an InvalidMappingException using the given information.InvalidMappingException(java.lang.String customMessage, java.lang.String type, java.lang.String path, java.lang.Throwable cause)
Constructs an InvalidMappingException using the given information.InvalidMappingException(java.lang.String type, java.lang.String path, java.lang.Throwable cause)
Constructs an InvalidMappingException using the given information and a standard message.InvalidMappingException(java.lang.String customMessage, Origin origin)
Constructs an InvalidMappingException using the given information.InvalidMappingException(java.lang.String customMessage, org.hibernate.internal.util.xml.Origin origin)
Constructs an InvalidMappingException using the given information.InvalidMappingException(java.lang.String customMessage, org.hibernate.internal.util.xml.Origin origin, java.lang.Exception cause)
Constructs an InvalidMappingException using the given information.InvalidMappingException(java.lang.String customMessage, org.hibernate.internal.util.xml.XmlDocument xmlDocument)
Constructs an InvalidMappingException using the given information.InvalidMappingException(java.lang.String customMessage, org.hibernate.internal.util.xml.XmlDocument xmlDocument, java.lang.Throwable cause)
Constructs an InvalidMappingException using the given information.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getPath()
java.lang.String
getType()
-
-
-
Constructor Detail
-
InvalidMappingException
public InvalidMappingException(java.lang.String customMessage, java.lang.String type, java.lang.String path, java.lang.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(java.lang.String customMessage, java.lang.String type, java.lang.String path)
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 document
-
InvalidMappingException
public InvalidMappingException(java.lang.String customMessage, org.hibernate.internal.util.xml.XmlDocument xmlDocument, java.lang.Throwable cause)
Constructs an InvalidMappingException using the given information.- Parameters:
customMessage
- The custom message explaining the exception conditionxmlDocument
- The document that was invalidcause
- The underlying cause
-
InvalidMappingException
public InvalidMappingException(java.lang.String customMessage, org.hibernate.internal.util.xml.XmlDocument xmlDocument)
Constructs an InvalidMappingException using the given information.- Parameters:
customMessage
- The custom message explaining the exception conditionxmlDocument
- The document that was invalid
-
InvalidMappingException
public InvalidMappingException(java.lang.String customMessage, Origin origin)
Constructs an InvalidMappingException using the given information.- Parameters:
customMessage
- The custom message explaining the exception conditionorigin
- The origin of the invalid mapping document
-
InvalidMappingException
public InvalidMappingException(java.lang.String type, java.lang.String path)
Constructs an InvalidMappingException using the given information and a standard message.- Parameters:
type
- The type of invalid mapping documentpath
- The path (type specific) of the invalid mapping document
-
InvalidMappingException
public InvalidMappingException(java.lang.String type, java.lang.String path, java.lang.Throwable cause)
Constructs an InvalidMappingException using the given information and a standard message.- Parameters:
type
- The type of invalid mapping documentpath
- The path (type specific) of the invalid mapping documentcause
- The underlying cause
-
InvalidMappingException
public InvalidMappingException(java.lang.String customMessage, org.hibernate.internal.util.xml.Origin origin, java.lang.Exception cause)
Constructs an InvalidMappingException using the given information.- Parameters:
customMessage
- The custom message explaining the exception conditionorigin
- The origin of the invalid mapping documentcause
- The underlying cause
-
InvalidMappingException
public InvalidMappingException(java.lang.String customMessage, org.hibernate.internal.util.xml.Origin origin)
Constructs an InvalidMappingException using the given information.- Parameters:
customMessage
- The custom message explaining the exception conditionorigin
- The origin of the invalid mapping document
-
-