Module java.base
Package java.io

Class WriteAbortedException

所有已实现的接口:
Serializable

public class WriteAbortedException extends ObjectStreamException
表示在写操作期间抛出了ObjectStreamExceptions之一。在读操作期间,当在写操作期间抛出了ObjectStreamExceptions之一时抛出。终止写操作的异常可以在详细字段中找到。流将被重置为其初始状态,并且所有已反序列化的对象的引用都将被丢弃。
自从:
1.1
参见:
  • Field Details

    • detail

      @Deprecated(since="17") public Exception detail
      Deprecated.
      This field predates the general-purpose exception chaining facility. The Throwable.getCause() method is now the preferred means of obtaining this information.
      写入ObjectStream时捕获的异常。
  • Constructor Details

    • WriteAbortedException

      public WriteAbortedException(String s, Exception ex)
      使用描述异常的字符串和导致中止的异常构造WriteAbortedException。
      参数:
      s - 描述异常的字符串。
      ex - 导致中止的异常。
  • Method Details

    • getMessage

      public String getMessage()
      生成消息并包括嵌套异常的消息(如果有)。
      覆盖:
      getMessage 在类 Throwable
      返回:
      Throwable实例的详细消息字符串(可能为null)。
    • getCause

      public Throwable getCause()
      返回终止操作的异常(cause)。
      覆盖:
      getCause 在类 Throwable
      返回:
      终止操作的异常(cause),可能为null。
      自从:
      1.4