Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

nectar
Class InternalException  view InternalException download InternalException.java

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bynectar.NectarException
              extended bynectar.InternalException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
ServiceException

public class InternalException
extends NectarException

InternalException's are caused by the internal works of the Servlet, for example the DataException (a class that inherits from InternalException) to notify SQL errors. They are eventually handled and logged a little differently in the Action classes.


Nested Class Summary
 
Nested classes inherited from class java.lang.Throwable
 
Field Summary
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
InternalException()
          Creates a new instance of InternalException without detail message.
InternalException(java.lang.String msg)
          Constructs an instance of InternalException with the specified detail message.
InternalException(java.lang.String message, java.lang.Throwable cause)
          Constructs an instance of InternalException with the specified detail message and the root cause Throwable.
 
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

InternalException

public InternalException()
Creates a new instance of InternalException without detail message.


InternalException

public InternalException(java.lang.String msg)
Constructs an instance of InternalException with the specified detail message.


InternalException

public InternalException(java.lang.String message,
                         java.lang.Throwable cause)
Constructs an instance of InternalException with the specified detail message and the root cause Throwable.