Serializable
public class PrintException extends Exception
PrintException
encapsulates a printing-related error condition that occurred while using a Print Service instance. This base class furnishes only a string description of the error. Subclasses furnish more detailed information if applicable.Constructor | Description |
---|---|
PrintException() |
Construct a print exception with no detail message. |
PrintException |
Construct a print exception chaining the supplied exception. |
PrintException |
Construct a print exception with the given detail message. |
PrintException |
Construct a print exception with the given detail message and chained exception. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public PrintException()
public PrintException(String s)
s
- detail message, or null
if no detail messagepublic PrintException(Exception e)
e
- chained exceptionpublic PrintException(String s, Exception e)
s
- detail message, or null
if no detail messagee
- chained exception
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/print/PrintException.html