org.starhope.appius.except
Class NotFoundException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.starhope.appius.except.NotFoundException
All Implemented Interfaces:
Serializable

public class NotFoundException
extends Exception

An exception returned in the case that some kind of asset cannot be found in the underlying data store, usually database table.

Author:
brpocock@star-hope.org
See Also:
Serialized Form

Field Summary
private  String msg
          WRITEME: document this field (brpocock@star-hope.org, Nov 5, 2009) msg (NotFoundException)
private static long serialVersionUID
          WRITEME
 
Constructor Summary
NotFoundException(Exception e)
          WRITEME: Document this constructor brpocock@star-hope.org
NotFoundException(String msg1)
           
 
Method Summary
 String getMessage()
           
 String toString()
          This is an overriding method.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, 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
WRITEME

See Also:
Constant Field Values

msg

private final String msg
WRITEME: document this field (brpocock@star-hope.org, Nov 5, 2009) msg (NotFoundException)

Constructor Detail

NotFoundException

public NotFoundException(Exception e)
WRITEME: Document this constructor brpocock@star-hope.org

Parameters:
e - WRITEME

NotFoundException

public NotFoundException(String msg1)
Parameters:
msg1 - WRITEME
Method Detail

getMessage

public String getMessage()
Overrides:
getMessage in class Throwable
See Also:
Throwable.getMessage()

toString

public String toString()
This is an overriding method.

Overrides:
toString in class Throwable
See Also:
Throwable.toString()