at.ac.tuwien.dslab.rmi.common.impl
Class UserAccessException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by at.ac.tuwien.dslab.rmi.common.impl.FileManException
              extended by at.ac.tuwien.dslab.rmi.common.impl.UserAccessException
All Implemented Interfaces:
java.io.Serializable

public class UserAccessException
extends FileManException

The UserAccessException is used when the user tries to invoke an operation where he/she is not authorized to do that.

See Also:
Serialized Form

Constructor Summary
UserAccessException(java.lang.String msg)
          Creates a new UserAccessException with a specific error message.
UserAccessException(java.lang.String msg, java.lang.Throwable cause)
          Creates a new UserAccessException with a specific error message and a cause for this message.
 
Method Summary
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UserAccessException

public UserAccessException(java.lang.String msg)
Creates a new UserAccessException with a specific error message.

Parameters:
msg - The error message.

UserAccessException

public UserAccessException(java.lang.String msg,
                           java.lang.Throwable cause)
Creates a new UserAccessException with a specific error message and a cause for this message.

Parameters:
msg - The error message.
cause - The exception which caused this one.