Package overit.geocall.edm.exceptions
Class EDMException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
overit.geocall.edm.exceptions.EDMException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
EDMConfigurationException,EDMConstraintViolationException,EDMConverterException,EDMPolicyException
Exception class representing errors encountered in the EDM (Extensible Data Model) system.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionEDMException(String message) Constructs a new EDMException with the specified detail message.EDMException(String message, Throwable cause) Constructs a newEDMExceptionwith the specified detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
EDMException
Constructs a new EDMException with the specified detail message.- Parameters:
message- The detail message (which is saved for later retrieval by theThrowable.getMessage()method) to provide more information about the exception.
-
EDMException
Constructs a newEDMExceptionwith the specified detail message and cause.- Parameters:
message- The detail message (which is saved for later retrieval by theThrowable.getMessage()method) to provide more information about the exception.cause- The cause (which is saved for later retrieval by theThrowable.getCause()method).
-