- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- jdk.security.jarsigner.JarSignerException
-
- All Implemented Interfaces:
-
Serializable
public class JarSignerException extends RuntimeException
- 从以下版本开始:
- 9
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 JarSignerException(String message, Throwable cause)
构造一个新的JarSignerException
具有指定的详细信息和原因。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
JarSignerException
public JarSignerException(String message, Throwable cause)
构造一个新的JarSignerException
具有指定的详细信息和原因。请注意,与
cause
相关联的详细消息不会自动并入此JarSignerException
的详细消息。- 参数
-
message
- 详细信息(保存以供Throwable.getMessage()
方法稍后检索)。 -
cause
- 原因(由Throwable.getCause()
方法保存供以后检索)。 (允许Anull
值,表示原因不存在或未知。)
-
-