java.security
Class ProviderException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by java.security.ProviderException
All Implemented Interfaces:
Serializable

public class ProviderException
extends RuntimeException

This exception indicates that a runtime problem was encounterd with a security provider.

See Also:
Serialized Form

Constructor Summary
ProviderException()
          Create an instance with no descriptive error message.
ProviderException(String msg)
          Create an instance with a descriptive error message.
ProviderException(String s, Throwable cause)
          Create a new instance with a descriptive error message and a cause.
ProviderException(Throwable cause)
          Create a new instance with a 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

ProviderException

public ProviderException()
Create an instance with no descriptive error message.


ProviderException

public ProviderException(String msg)
Create an instance with a descriptive error message.

Parameters:
msg - the descriptive error message

ProviderException

public ProviderException(String s,
                         Throwable cause)
Create a new instance with a descriptive error message and a cause.

Parameters:
s - the descriptive error message
cause - the cause
Since:
1.5

ProviderException

public ProviderException(Throwable cause)
Create a new instance with a cause.

Parameters:
cause - the cause
Since:
1.5