ostore.util
Class InvalidConfigFileException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--ostore.util.InvalidConfigFileException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- HMMStage.InvalidTypeException, HMMStage.UnsupportedConfigurationException
- public class InvalidConfigFileException
- extends Exception
An exception caused by incorrect or incomplete config files.
- Version:
- $Id: InvalidConfigFileException.java,v 1.4 2001/10/18 00:20:03 eaton Exp $
- Author:
- Dennis Geels
- See Also:
- Serialized Form
InvalidConfigFileException
public InvalidConfigFileException(String stage,
String tag)
- Constructs a new InvalidConfigFileException
- Parameters:
stage
- The name of the stage throwing the exception.
May be null
.tag
- The missing config file tag
InvalidConfigFileException
public InvalidConfigFileException()
- Constructs a new generic InvalidConfigFileException
InvalidConfigFileException
public InvalidConfigFileException(String msg)
- Constructs a InvalidConfigFileException with an arbitrary message.
This constructor simply calls the constructor for
Exception
. It should be called by subclasses of
InvalidCOnfigFileException
which do not want to use
this class' error message.
- Parameters:
msg
- The message for this Exception
.