Most visited

Recently visited

Added in API level 1

DestroyFailedException

public class DestroyFailedException
extends 异常

java.lang.Object
    java.lang.Throwable
      java.lang.Exception
        javax.security.auth.DestroyFailedException


表示 destroy操作失败。

destroy方法失败时,由执行 Destroyable接口的凭据抛出此异常。

摘要(Summary)

Public constructors

DestroyFailedException()

构造一个DestroyFailedException而不需要详细消息。

DestroyFailedException(String msg)

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

继承方法(Inherited methods)

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

Public constructors

DestroyFailedException

Added in API level 1
DestroyFailedException ()

构造一个DestroyFailedException而不需要详细消息。 详细消息是描述此特定异常的字符串。

DestroyFailedException

Added in API level 1
DestroyFailedException (String msg)

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

参数(Parameters)
msg String: the detail message.

Hooray!