public class ApplicationRemovalException extends SecuritySpiException
ApplicationRemovalException
is thrown if a security provider
encounters a problem while handling the deletion of an application. NestedThrowable.Util
nested
Constructor and Description |
---|
ApplicationRemovalException()
Constructs a
ApplicationRemovalException with no arguments. |
ApplicationRemovalException(java.lang.String msg)
Constructs a
ApplicationRemovalException with the specified
detail message. |
ApplicationRemovalException(java.lang.String msg,
java.lang.Throwable nested)
Constructs a
ApplicationRemovalException with a detail message and
a nested exception. |
ApplicationRemovalException(java.lang.Throwable nested)
Constructs a
ApplicationRemovalException with a nested exception. |
getMessage, getNested, getNestedException, printStackTrace, printStackTrace, printStackTrace, superPrintStackTrace, superPrintStackTrace, superToString, toString
public ApplicationRemovalException()
ApplicationRemovalException
with no arguments.public ApplicationRemovalException(java.lang.String msg)
ApplicationRemovalException
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 ApplicationRemovalException(java.lang.Throwable nested)
ApplicationRemovalException
with a nested exception.nested
- a Throwable
object to wrapper as part of this exception.public ApplicationRemovalException(java.lang.String msg, java.lang.Throwable nested)
ApplicationRemovalException
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.