java.lang.Object
java.lang.Throwable
java.lang.Exception
java.awt.print.PrinterException
java.awt.print.PrinterAbortException
- All Implemented Interfaces:
Serializable
public class PrinterAbortException extends PrinterException
The
PrinterAbortException
class is a subclass of
PrinterException
and is used to indicate that a user
or application has terminated the print job while it was in
the process of printing.- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description PrinterAbortException()
Constructs a newPrinterAbortException
with no detail message.PrinterAbortException(String msg)
Constructs a newPrinterAbortException
with the specified detail message. -
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PrinterAbortException
public PrinterAbortException()Constructs a newPrinterAbortException
with no detail message. -
PrinterAbortException
Constructs a newPrinterAbortException
with the specified detail message.- Parameters:
msg
- the message to be generated when aPrinterAbortException
is thrown
-