Package org.hibernate
Class InvalidMappingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- jakarta.persistence.PersistenceException
-
- org.hibernate.HibernateException
-
- org.hibernate.MappingException
-
- org.hibernate.InvalidMappingException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
InvalidMappingException
public class InvalidMappingException extends MappingException
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 anInvalidMappingException
using 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 anInvalidMappingException
using the given information.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getPath()
String
getType()
-
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 anInvalidMappingException
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
-
-