Class EdalException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.ipk_gatersleben.bit.bi.edal.primary_data.file.EdalException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
EdalApprovalException
public class EdalException extends java.lang.Exception
Exception is thrown on general eDAL failures.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EdalException()
Constructor forEdalException
without a specific message.EdalException(java.lang.String message)
Constructor forEdalException
with a specific message.EdalException(java.lang.String message, java.lang.Throwable cause)
Constructor forEdalException
with a specific message and cause.EdalException(java.lang.Throwable cause)
Constructor forEdalException
with a specific cause.
-
-
-
Constructor Detail
-
EdalException
public EdalException()
Constructor forEdalException
without a specific message.
-
EdalException
public EdalException(java.lang.String message)
Constructor forEdalException
with a specific message.- Parameters:
message
- the error message.
-
EdalException
public EdalException(java.lang.String message, java.lang.Throwable cause)
Constructor forEdalException
with a specific message and cause.- Parameters:
message
- the error message.cause
- the cause.
-
EdalException
public EdalException(java.lang.Throwable cause)
Constructor forEdalException
with a specific cause.- Parameters:
cause
- the cause.
-
-