com.novell.java.security
Class ProviderException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--com.novell.java.security.ProviderException

public class ProviderException
extends java.lang.RuntimeException

Provides a runtime exception for Provider exceptions, such as misconfiguration errors. This Provider exception may be subclassed by Providers to throw specialized, provider-specific runtime errors.


Constructor Summary
ProviderException()
          Constructs a ProviderException with no detail message.
ProviderException(java.lang.String s)
          Constructs a ProviderException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ProviderException

public ProviderException()
Constructs a ProviderException with no detail message.

ProviderException

public ProviderException(java.lang.String s)
Constructs a ProviderException with the specified detail message. A detail message is a String that describes this particular exception.
Parameters:
s - The detail message string.