- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.awt.print.PrinterException
-
- java.awt.print.PrinterIOException
-
- All Implemented Interfaces:
-
Serializable
public class PrinterIOException extends PrinterException
该PrinterIOException
类的子类PrinterException
,用来表示某种IO错误而发生的打印。从版本1.4开始,这种异常已被改进以符合通用异常链接机制。 现在,在建造时提供并通过
getIOException()
方法访问的“终止打印作业的”IOException
“现在被称为原因 ,可以通过Throwable.getCause()
方法以及上述”传统方法“访问。- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 PrinterIOException(IOException exception)
构造一个新的PrinterIOException
与指定的IOException
的字符串表示。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 Throwable
getCause()
返回此异常的原因(终止打印作业的IOException
)。IOException
getIOException()
返回终止打印作业的IOException
。-
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, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
PrinterIOException
public PrinterIOException(IOException exception)
构造新的PrinterIOException
与指定的IOException
的字符串表示。- 参数
-
exception
- 指定的IOException
-
-
方法详细信息
-
getIOException
public IOException getIOException()
返回终止打印作业的IOException
。这种方法早于通用异常链接工具。
Throwable.getCause()
方法现在是获取此信息的首选方法。- 结果
-
IOException
终止了打印作业。 - 另请参见:
-
IOException
-
-