public class ResourceRemovalException extends SecurityServiceException
ResourceRemovalException
exception is thrown if a security provider
is unable to remove a resource.
This exception wrappers an exception with the same name from the
weblogic.security.spi
package.
NestedThrowable.Util
nested
Constructor and Description |
---|
ResourceRemovalException()
Constructs a
ResourceRemovalException with no arguments. |
ResourceRemovalException(java.lang.String msg)
Constructs a
ResourceRemovalException with the specified detail message. |
ResourceRemovalException(java.lang.String msg,
java.lang.Throwable nested)
Constructs a
ResourceRemovalException with a detail message
and a nested exception. |
ResourceRemovalException(java.lang.Throwable nested)
Constructs a
ResourceRemovalException with a nested exception. |
getMessage, getNested, getNestedException, printStackTrace, printStackTrace, printStackTrace, superPrintStackTrace, superPrintStackTrace, superToString, toString
public ResourceRemovalException()
ResourceRemovalException
with no arguments.public ResourceRemovalException(java.lang.String msg)
ResourceRemovalException
with the specified detail message.
A detail message is a String that describes this particular exception.msg
- a String providing additional information about this exception.public ResourceRemovalException(java.lang.Throwable nested)
ResourceRemovalException
with a nested exception.nested
- a Throwable
object to wrapper as part of this exception.public ResourceRemovalException(java.lang.String msg, java.lang.Throwable nested)
ResourceRemovalException
with a detail message
and a nested exception.msg
- a String providing additional information about this exception.nested
- a Throwable
object to wrapper as part of this exception.