Package VCF.Exceptions
Class VCFDataException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- VCF.Exceptions.VCFException
-
- VCF.Exceptions.VCFDataException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
VCFMissingFormatException
,VCFNoDataException
,VCFUnexpectedDataException
public class VCFDataException extends VCFException
Exception for when there is a problem with data in the VCF- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description VCFDataException()
Default constructorVCFDataException(java.lang.String msg)
Constructor that takes a messageVCFDataException(java.lang.String msg, java.lang.Throwable cause)
Constructor that takes a message and another Throwable as the cause of this exception.
-
-
-
Constructor Detail
-
VCFDataException
public VCFDataException()
Default constructor
-
VCFDataException
public VCFDataException(java.lang.String msg)
Constructor that takes a message- Parameters:
msg
- The message
-
VCFDataException
public VCFDataException(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
-
-