- 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 Summary
Constructors Constructor Description JarSignerException(String message, Throwable cause)Constructs a newJarSignerExceptionwith the specified detail message and cause. 
- 
Method Summary
- 
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
JarSignerException
public 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 theThrowable.getMessage()method).cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
 
 - 
 
 -