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