Package uk.ac.bristol.star.cdf
Class CdfFormatException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- uk.ac.bristol.star.cdf.CdfFormatException
-
- All Implemented Interfaces:
java.io.Serializable
public class CdfFormatException extends java.io.IOException
Exception thrown during CDF parsing when the data stream appears either to be in contravention of the CDF format, or uses some feature of the CDF format which is unsupported by the current implementation.- Since:
- 18 Jun 2013
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CdfFormatException(java.lang.String msg)
Constructs an exception with a message.CdfFormatException(java.lang.String msg, java.lang.Throwable cause)
Constructs an exception with a message and a cause.
-
-
-
Constructor Detail
-
CdfFormatException
public CdfFormatException(java.lang.String msg)
Constructs an exception with a message.- Parameters:
msg
- message
-
CdfFormatException
public CdfFormatException(java.lang.String msg, java.lang.Throwable cause)
Constructs an exception with a message and a cause.- Parameters:
msg
- messagecause
- upstream exception
-
-