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

Quick Search    Search Deep

org.jeteam.bean.project
Class ProjectException  view ProjectException download ProjectException.java

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.jeteam.util.exception.JeteamException
              extended byorg.jeteam.bean.project.ProjectException
All Implemented Interfaces:
java.io.Serializable

public class ProjectException
extends org.jeteam.util.exception.JeteamException

This exception represents a business exception, the arguments passed to the constructor should be the i18n context message key, its associated parameters, and a Throwable instance that cause this exception (if any).


Nested Class Summary
 
Nested classes inherited from class java.lang.Throwable
 
Field Summary
 
Fields inherited from class org.jeteam.util.exception.JeteamException
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
ProjectException(java.lang.String message)
          Just providing the context message key.
ProjectException(java.lang.String message, java.lang.Object parameter)
          Passing the context message key and an associated parameter.
ProjectException(java.lang.String message, java.lang.Object[] parameters)
          Passing the context message key and the associated parameters.
ProjectException(java.lang.String message, java.lang.Object[] parameters, java.lang.Throwable cause)
          Default constructor: passing the context message key, the associated parameters and the cause of the exception.
ProjectException(java.lang.String message, java.lang.Object parameter, java.lang.Throwable cause)
          Passing the context message key, an associated parameter and the cause of the exception.
ProjectException(java.lang.String message, java.lang.Throwable cause)
          Passing the context message key and the cause of the exception.
 
Methods inherited from class org.jeteam.util.exception.JeteamException
getParameters
 
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

ProjectException

public ProjectException(java.lang.String message)
Just providing the context message key.


ProjectException

public ProjectException(java.lang.String message,
                        java.lang.Throwable cause)
Passing the context message key and the cause of the exception.


ProjectException

public ProjectException(java.lang.String message,
                        java.lang.Object parameter)
Passing the context message key and an associated parameter.


ProjectException

public ProjectException(java.lang.String message,
                        java.lang.Object parameter,
                        java.lang.Throwable cause)
Passing the context message key, an associated parameter and the cause of the exception.


ProjectException

public ProjectException(java.lang.String message,
                        java.lang.Object[] parameters)
Passing the context message key and the associated parameters.


ProjectException

public ProjectException(java.lang.String message,
                        java.lang.Object[] parameters,
                        java.lang.Throwable cause)
Default constructor: passing the context message key, the associated parameters and the cause of the exception.