org.apache.hadoop.fs.permission
Class AccessControlException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.io.IOException
              extended by org.apache.hadoop.fs.permission.AccessControlException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AccessControlException

Deprecated. Use AccessControlException instead.

@Deprecated
public class AccessControlException
extends IOException

An exception class for access control related issues.

See Also:
Serialized Form

Constructor Summary
AccessControlException()
          Deprecated. Default constructor is needed for unwrapping from RemoteException.
AccessControlException(String s)
          Deprecated. Constructs an AccessControlException with the specified detail message.
AccessControlException(Throwable cause)
          Deprecated. Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
 
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AccessControlException

public AccessControlException()
Deprecated. 
Default constructor is needed for unwrapping from RemoteException.


AccessControlException

public AccessControlException(String s)
Deprecated. 
Constructs an AccessControlException with the specified detail message.

Parameters:
s - the detail message.

AccessControlException

public AccessControlException(Throwable cause)
Deprecated. 
Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).

Parameters:
cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)


Copyright © 2009 The Apache Software Foundation