Package VCF.Exceptions
Class VCFUnexpectedDataException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- VCF.Exceptions.VCFException
-
- VCF.Exceptions.VCFDataException
-
- VCF.Exceptions.VCFUnexpectedDataException
-
- All Implemented Interfaces:
java.io.Serializable
public class VCFUnexpectedDataException extends VCFDataException
Exception for when there is unexpected data for a given format- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description VCFUnexpectedDataException()
Default constructorVCFUnexpectedDataException(java.lang.String msg)
Constructor that takes a messageVCFUnexpectedDataException(java.lang.String msg, java.lang.Throwable cause)
Constructor that takes a message and another Throwable as the cause of this exception.
-
-
-
Constructor Detail
-
VCFUnexpectedDataException
public VCFUnexpectedDataException()
Default constructor
-
VCFUnexpectedDataException
public VCFUnexpectedDataException(java.lang.String msg)
Constructor that takes a message- Parameters:
msg
- The message
-
VCFUnexpectedDataException
public VCFUnexpectedDataException(java.lang.String msg, java.lang.Throwable cause)
Constructor that takes a message and another Throwable as the cause of this exception.- Parameters:
msg
- The messagecause
- The cause
-
-