com.ds.fw.exceptions
Class FwNoPermissionException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.ds.fw.exceptions.FwException
                    |
                    +--com.ds.fw.exceptions.FwNoPermissionException
All Implemented Interfaces:
java.io.Serializable

public class FwNoPermissionException
extends FwException

To be thropwn by the component manager when current user priviledges/roles forbid access to the component

See Also:
Serialized Form

Constructor Summary
FwNoPermissionException()
          Null constructor.
FwNoPermissionException(java.lang.String msg)
          Constructs this object by initializing superclass with given string(message).
FwNoPermissionException(java.lang.String msg, java.lang.Throwable cause)
          Constructs this object with message and original cause of exception.
FwNoPermissionException(java.lang.Throwable exc)
          Constructs this object to wrap up an exception/throwable
 
Methods inherited from class com.ds.fw.exceptions.FwException
getCause, getMessage, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FwNoPermissionException

public FwNoPermissionException()
Null constructor.


FwNoPermissionException

public FwNoPermissionException(java.lang.String msg)
Constructs this object by initializing superclass with given string(message).


FwNoPermissionException

public FwNoPermissionException(java.lang.Throwable exc)
Constructs this object to wrap up an exception/throwable


FwNoPermissionException

public FwNoPermissionException(java.lang.String msg,
                               java.lang.Throwable cause)
Constructs this object with message and original cause of exception. This is intended to 'translate' original exception to NoPermissionException.

Parameters:
msg - message
cause - original exception