FileDocCategorySizeDatePackage
PrinterAbortException.javaAPI DocJava SE 5 API969Fri Aug 26 14:56:56 BST 2005java.awt.print

PrinterAbortException

public class PrinterAbortException extends PrinterException
The PrinterAbortException class is a subclass of {@link PrinterException} and is used to indicate that a user or application has terminated the print job while it was in the process of printing.

Fields Summary
Constructors Summary
public PrinterAbortException()
Constructs a new PrinterAbortException with no detail message.

        super();
    
public PrinterAbortException(String msg)
Constructs a new PrinterAbortException with the specified detail message.

param
msg the message to be generated when a PrinterAbortException is thrown

        super(msg);
    
Methods Summary