Package overit.geocall.edm.exceptions
Class EDMConverterException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
overit.geocall.edm.exceptions.EDMException
overit.geocall.edm.exceptions.EDMConverterException
- All Implemented Interfaces:
Serializable
Exception class representing an error that occurred during the conversion process in EDM (Extensible Data Model) operations.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionEDMConverterException(String message) Constructs a new EDMConverterException with the specified error message.EDMConverterException(String message, Throwable cause) Constructs a new EDMConverterException with 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
-
EDMConverterException
Constructs a new EDMConverterException with the specified error message.- Parameters:
message- The detail message (which is saved for later retrieval by theThrowable.getMessage()method).
-
EDMConverterException
Constructs a new EDMConverterException with the specified detail message and cause.- Parameters:
message- The detail message (which is saved for later retrieval by theThrowable.getMessage()method).cause- The cause (which is saved for later retrieval by theThrowable.getCause()method).
-