You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
884 B
54 lines
884 B
/*
|
|
* Copyright (c) 1998, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.awt.print;
|
|
|
|
/**
|
|
* The <code>PrinterException</code> class and its subclasses are used
|
|
* to indicate that an exceptional condition has occurred in the print
|
|
* system.
|
|
*/
|
|
|
|
public class PrinterException extends Exception {
|
|
|
|
/**
|
|
* Constructs a new <code>PrinterException</code> object
|
|
* without a detail message.
|
|
*/
|
|
public PrinterException() {
|
|
|
|
}
|
|
|
|
/**
|
|
* Constructs a new <code>PrinterException</code> object
|
|
* with the specified detail message.
|
|
* @param msg the message to generate when a
|
|
* <code>PrinterException</code> is thrown
|
|
*/
|
|
public PrinterException(String msg) {
|
|
super(msg);
|
|
}
|
|
}
|