Class DataFormatException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.ipk_gatersleben.bit.bi.edal.primary_data.metadata.DataFormatException
-
- All Implemented Interfaces:
java.io.Serializable
public class DataFormatException extends java.lang.Exception
Exception for unsupported data formats- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DataFormatException()
Constructor forDataFormatException
without a specific message.DataFormatException(java.lang.String message)
Constructor forDataFormatException
with a specific message.DataFormatException(java.lang.String message, java.lang.Throwable cause)
Constructor forDataFormatException
with a specific message and cause.DataFormatException(java.lang.Throwable cause)
Constructor forDataFormatException
with a specific cause.
-
-
-
Constructor Detail
-
DataFormatException
public DataFormatException()
Constructor forDataFormatException
without a specific message.
-
DataFormatException
public DataFormatException(java.lang.String message)
Constructor forDataFormatException
with a specific message.- Parameters:
message
- the error message.
-
DataFormatException
public DataFormatException(java.lang.String message, java.lang.Throwable cause)
Constructor forDataFormatException
with a specific message and cause.- Parameters:
message
- the error message.cause
- the cause.
-
DataFormatException
public DataFormatException(java.lang.Throwable cause)
Constructor forDataFormatException
with a specific cause.- Parameters:
cause
- the cause.
-
-