Most visited

Recently visited

Added in API level 1

ShortBufferException

public class ShortBufferException
extends GeneralSecurityException

java.lang.Object
    java.lang.Throwable
      java.lang.Exception
        java.security.GeneralSecurityException
          javax.crypto.ShortBufferException


当用户提供的输出缓冲区太短而无法保存操作结果时,会引发此异常。

摘要(Summary)

Public constructors

ShortBufferException()

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

ShortBufferException(String msg)

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

继承方法(Inherited methods)

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

Public constructors

ShortBufferException

Added in API level 1
ShortBufferException ()

构造一个没有详细消息的ShortBufferException。 详细消息是描述此特定异常的字符串。

ShortBufferException

Added in API level 1
ShortBufferException (String msg)

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

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

Hooray!