edu.wpi.prc.project
Class MissingConfigurationFileException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by edu.wpi.prc.project.MissingConfigurationFileException
All Implemented Interfaces:
java.io.Serializable

public class MissingConfigurationFileException
extends java.lang.Exception

The MissingConfigurationFileException is thrown when Project.readFromFile() cannot open the project configuration file.

Author:
James Baldassari
See Also:
Serialized Form

Field Summary
private  java.lang.String errorMsg
           
private static long serialVersionUID
           
 
Constructor Summary
MissingConfigurationFileException()
          Default constructor.
MissingConfigurationFileException(java.lang.String errorMsg)
          Constructor specifying an error message.
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values

errorMsg

private java.lang.String errorMsg
Constructor Detail

MissingConfigurationFileException

MissingConfigurationFileException()
Default constructor.


MissingConfigurationFileException

MissingConfigurationFileException(java.lang.String errorMsg)
Constructor specifying an error message.

Parameters:
errorMsg - The error message to set.
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Throwable
Returns:
Returns the error message associated with this Exception.