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

Quick Search    Search Deep

org.jeteam.bean.security
Class PrivilegeException  view PrivilegeException download PrivilegeException.java

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

public class PrivilegeException
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
PrivilegeException(java.lang.String message)
          Just providing the context message key.
PrivilegeException(java.lang.String message, java.lang.Object parameter)
          Passing the context message key and an associated parameter.
PrivilegeException(java.lang.String message, java.lang.Object[] parameters)
          Passing the context message key and the associated parameters.
PrivilegeException(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.
PrivilegeException(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.
PrivilegeException(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

PrivilegeException

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


PrivilegeException

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


PrivilegeException

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


PrivilegeException

public PrivilegeException(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.


PrivilegeException

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


PrivilegeException

public PrivilegeException(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.