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