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, SDMBuilder.InvalidTypeException, SDMBuilder.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

Constructor Summary
InvalidConfigFileException()
          Constructs a new generic InvalidConfigFileException
InvalidConfigFileException(String msg)
          Constructs a InvalidConfigFileException with an arbitrary message.
InvalidConfigFileException(String stage, String tag)
          Constructs a new InvalidConfigFileException
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

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.