- 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 This exception is thrown whenJarSigner.sign(java.util.zip.ZipFile, java.io.OutputStream)fails.- Since:
- 9
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description JarSignerException(String message, Throwable cause)Constructs a newJarSignerExceptionwith the specified detail message and cause.
 - 
Method Summary- 
Methods declared in class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
- 
 
- 
- 
- 
Constructor Detail- 
JarSignerExceptionpublic JarSignerException(String message, Throwable cause) Constructs a newJarSignerExceptionwith the specified detail message and cause.Note that the detail message associated with causeis not automatically incorporated in thisJarSignerException's detail message.- Parameters:
- message- the detail message (which is saved for later retrieval by the- Throwable.getMessage()method).
- cause- the cause (which is saved for later retrieval by the- Throwable.getCause()method). (A- nullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
 
 
- 
 
-