- java.lang.Object
 -  
      
- java.lang.Throwable
 -  
        
- java.lang.Exception
 -  
          
- java.security.GeneralSecurityException
 -  
            
- java.security.InvalidAlgorithmParameterException
 
 
 
 
 
-  
       
- All Implemented Interfaces:
 -  
         
Serializable 
public class InvalidAlgorithmParameterException extends GeneralSecurityException
这是无效或不合适的算法参数的例外。- 从以下版本开始:
 - 1.2
 - 另请参见:
 -  
         
AlgorithmParameters,AlgorithmParameterSpec, Serialized Form 
 
-  
        
       
-  
             
构造方法摘要
构造方法 Constructor 描述 InvalidAlgorithmParameterException()构造一个InvalidAlgorithmParameterException,没有详细信息。InvalidAlgorithmParameterException(String msg)使用指定的详细消息构造InvalidAlgorithmParameterException。InvalidAlgorithmParameterException(String message, Throwable cause)创建一个具有指定的详细信息和原因的InvalidAlgorithmParameterException。InvalidAlgorithmParameterException(Throwable cause)创建一个InvalidAlgorithmParameterException与指定的原因和详细消息(cause==null ? null : cause.toString())(它通常包含的类和详细消息cause)。 
-  
             
方法摘要
-  
               
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait 
-  
               
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
 -  
               
 
 -  
             
 
-  
        
       
-  
             
构造方法详细信息
-  
InvalidAlgorithmParameterException
public InvalidAlgorithmParameterException()
构造一个InvalidAlgorithmParameterException,没有详细信息。 详细消息是描述此特定异常的字符串。 
-  
InvalidAlgorithmParameterException
public InvalidAlgorithmParameterException(String msg)
使用指定的详细消息构造InvalidAlgorithmParameterException。 详细消息是描述此特定异常的字符串。- 参数
 -  
              
msg- 详细信息。 
 
-  
InvalidAlgorithmParameterException
public InvalidAlgorithmParameterException(String message, Throwable cause)
创建一个InvalidAlgorithmParameterException具有指定的详细信息和原因。- 参数
 -  
              
message- 详细信息(由Throwable.getMessage()方法保存供以后检索)。 -  
              
cause- 原因(由Throwable.getCause()方法保存供以后检索)。 (Anull值是允许的,并且表示原因不存在或未知。) - 从以下版本开始:
 - 1.5
 
 
-  
InvalidAlgorithmParameterException
public InvalidAlgorithmParameterException(Throwable cause)
创建一个InvalidAlgorithmParameterException与指定的原因和详细消息(cause==null ? null : cause.toString())(它通常包含的类和详细消息cause)。- 参数
 -  
              
cause- 原因(保存以供以后通过Throwable.getCause()方法检索)。 (允许Anull值,并表示原因不存在或未知。) - 从以下版本开始:
 - 1.5
 
 
 -  
 
 -