- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.awt.print.PrinterException
-
- All Implemented Interfaces:
-
Serializable
- 已知直接子类:
-
PrinterAbortException
,PrinterIOException
public class PrinterException extends 异常
PrinterException
类及其子类用于指示在打印系统中发生异常情况。- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 PrinterException()
构造一个新的PrinterException
对象,没有详细消息。PrinterException(String msg)
使用指定的详细消息构造一个新的PrinterException
对象。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
PrinterException
public PrinterException()
构造一个新的PrinterException
对象,没有详细消息。
-
PrinterException
public PrinterException(String msg)
构造具有指定详细消息的新的PrinterException
对象。- 参数
-
msg
- 抛出PrinterException
时生成的消息
-
-