FileDocCategorySizeDatePackage
NoSuchProviderException.javaAPI DocJava SE 5 API1069Fri Aug 26 14:57:14 BST 2005java.security

NoSuchProviderException

public class NoSuchProviderException extends GeneralSecurityException
This exception is thrown when a particular security provider is requested but is not available in the environment.
version
1.20 03/12/19
author
Benjamin Renaud

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public NoSuchProviderException()
Constructs a NoSuchProviderException with no detail message. A detail message is a String that describes this particular exception.


                           
      
	super();
    
public NoSuchProviderException(String msg)
Constructs a NoSuchProviderException with the specified detail message. A detail message is a String that describes this particular exception.

param
msg the detail message.

	super(msg);
    
Methods Summary