public class ResourceCreationException extends SecurityServiceException
ResourceCreationException
exception is thrown if a security provider
encounters a problem while creating a resource.
This exception wrappers an exception with the same name from the
weblogic.security.spi
package.
NestedThrowable.Util
nested
Constructor and Description |
---|
ResourceCreationException()
Constructs a
ResourceCreationException with no arguments. |
ResourceCreationException(java.lang.String msg)
Constructs a
ResourceCreationException with the specified
detail message. |
ResourceCreationException(java.lang.String msg,
java.lang.Throwable nested)
Constructs a
ResourceCreationException with a detail message and
a nested exception. |
ResourceCreationException(java.lang.Throwable nested)
Constructs a
ResourceCreationException with a nested exception. |
getMessage, getNested, getNestedException, printStackTrace, printStackTrace, printStackTrace, superPrintStackTrace, superPrintStackTrace, superToString, toString
public ResourceCreationException()
ResourceCreationException
with no arguments.public ResourceCreationException(java.lang.String msg)
ResourceCreationException
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 ResourceCreationException(java.lang.Throwable nested)
ResourceCreationException
with a nested exception.nested
- a Throwable
object to wrapper as part of this exception.public ResourceCreationException(java.lang.String msg, java.lang.Throwable nested)
ResourceCreationException
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.