Module  java.desktop
软件包  java.awt.print

Class PrinterIOException

  • All Implemented Interfaces:
    Serializable


    public class PrinterIOException
    extends PrinterException
    PrinterIOException类的子类PrinterException ,用来表示某种IO错误而发生的打印。

    从版本1.4开始,这种异常已被改进以符合通用异常链接机制。 现在,在建造时提供并通过getIOException()方法访问的“终止打印作业的” IOException “现在被称为原因 ,可以通过Throwable.getCause()方法以及上述”传统方法“访问。

    另请参见:
    Serialized Form
    • 构造方法详细信息

      • PrinterIOException

        public PrinterIOException​(IOException exception)
        构造新的PrinterIOException与指定的IOException的字符串表示。
        参数
        exception - 指定的 IOException
    • 方法详细信息

      • getIOException

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

        这种方法早于通用异常链接工具。 Throwable.getCause()方法现在是获取此信息的首选方法。

        结果
        IOException终止了打印作业。
        另请参见:
        IOException
      • getCause

        public Throwable getCause​()
        返回此异常的原因(终止打印作业的 IOException )。
        重写:
        getCauseThrowable
        结果
        这个例外的原因。
        从以下版本开始:
        1.4