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

Quick Search    Search Deep

org.jeteam.bean.user
Class UserException  view UserException download UserException.java

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

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

UserException

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


UserException

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


UserException

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


UserException

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


UserException

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


UserException

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