返回介绍

java.awt.print 类 PrinterIOException

发布于 2019-10-04 09:50:40 字数 3210 浏览 1066 评论 0 收藏 0

java.lang.Object
  └java.lang.Throwable
      └java.lang.Exception
          └java.awt.print.PrinterException
              └java.awt.print.PrinterIOException
所有已实现的接口:
Serializable

public class PrinterIOException
extends PrinterException
 

PrinterIOException 类是 PrinterException 的子类,用于指示在打印过程中发生了某种 IO 错误。

从 1.4 版本开始,此异常已经改进,以符合通用异常链机制。在构造时提供并通过 getIOException() 方法访问的“终止打印作业的 IOException ”就是目前所说的 cause,可以通过 Throwable.getCause() 方法以及上述“遗留方法”访问它。

另请参见:
序列化表格

构造方法摘要
PrinterIOException(IOExceptionexception)

构造具有指定 IOException 字符串表示形式的新 PrinterIOException

方法摘要
ThrowablegetCause()

返回此异常的 cause(终止打印作业的 IOException )。

IOExceptiongetIOException()

返回终止打印作业的 IOException

从类 java.lang.Throwable 继承的方法
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

构造方法详细信息

PrinterIOException

public PrinterIOException(IOExceptionexception)
构造具有指定 IOException 字符串表示形式的新 PrinterIOException
参数:
exception - 指定的 IOException

方法详细信息

getIOException

public IOException getIOException()
返回终止打印作业的 IOException

这是通用异常链设施之前的方法。现在 Throwable.getCause() 方法是获取此信息的首选方法。

返回:
终止打印作业的 IOException
另请参见:
IOException

getCause

public Throwable getCause()
返回此异常的 cause(终止打印作业的 IOException )。
覆盖:
Throwable 中的 getCause
返回:
此异常的 cause。
从以下版本开始:
1.4

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文