java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jdk.security.jarsigner.JarSignerException
- 所有已实现的接口:
Serializable
- 自从:
- 9
- 参见:
-
构造方法总结
构造方法 -
方法总结
在类 java.lang.Throwable 中声明的方法
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
构造方法详细信息
-
JarSignerException
使用指定的详细消息和原因构造一个新的JarSignerException。请注意,与
cause关联的详细消息是not自动并入此JarSignerException的详细消息中。- 参数:
message- 详细消息(保存以供以后通过Throwable.getMessage()方法检索)。cause- 原因(保存以供以后通过Throwable.getCause()方法检索)。 (允许使用null值,表示原因不存在或未知。)
-