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

PrinterException

public class PrinterException extends Exception
The PrinterException class and its subclasses are used to indicate that an exceptional condition has occurred in the print system.

Fields Summary
Constructors Summary
public PrinterException()
Constructs a new PrinterException object without a detail message.


    
public PrinterException(String msg)
Constructs a new PrinterException object with the specified detail message.

param
msg the message to generate when a PrinterException is thrown

        super(msg);
    
Methods Summary