Most visited

Recently visited

Added in API level 1

GeneralSecurityException

public class GeneralSecurityException
extends 异常

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.security.GeneralSecurityException
Known Direct Subclasses
Known Indirect Subclasses


GeneralSecurityException类是一个通用安全异常类,为所有与其相关的安全相关异常类提供了类型安全性。

Summary

Public constructors

GeneralSecurityException()

构造一个没有详细消息的GeneralSecurityException。

GeneralSecurityException(String msg)

用指定的详细信息构造一个GeneralSecurityException。

GeneralSecurityException(String message, Throwable cause)

用指定的详细信息和原因创建一个 GeneralSecurityException

GeneralSecurityException(Throwable cause)

创建 GeneralSecurityException与指定的原因和 (cause==null ? null : cause.toString())详细消息(它通常包含的 cause类和详细消息)。

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

GeneralSecurityException

Added in API level 1
GeneralSecurityException ()

构造一个没有详细消息的GeneralSecurityException。

GeneralSecurityException

Added in API level 1
GeneralSecurityException (String msg)

用指定的详细信息构造一个GeneralSecurityException。 详细消息是描述此特定异常的字符串。

Parameters
msg String: the detail message.

GeneralSecurityException

Added in API level 1
GeneralSecurityException (String message, 
                Throwable cause)

用指定的详细信息和原因创建一个 GeneralSecurityException

Parameters
message String: the detail message (which is saved for later retrieval by the getMessage() method).
cause Throwable: the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

GeneralSecurityException

Added in API level 1
GeneralSecurityException (Throwable cause)

创建 GeneralSecurityException与指定的原因和 (cause==null ? null : cause.toString())详细消息(它通常包含的 cause类和详细消息)。

Parameters
cause Throwable: the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

Hooray!