类 ItemStreamException

  • 所有已实现的接口:
    java.io.Serializable

    public class ItemStreamException
    extends java.lang.RuntimeException
    Exception representing any errors encountered while processing a stream.
    作者:
    Dave Syer, Lucas Ward
    另请参阅:
    序列化表格
    • 构造器概要

      构造器 
      构造器说明
      ItemStreamException​(java.lang.String message) 
      ItemStreamException​(java.lang.String msg, java.lang.Throwable nested)
      Constructs a new instance with a message and nested exception.
      ItemStreamException​(java.lang.Throwable nested)
      Constructs a new instance with a nested exception and empty message.
    • 方法概要

      • 从类继承的方法 java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 构造器详细资料

      • ItemStreamException

        public ItemStreamException​(java.lang.String message)
        参数:
        message - the String that contains a detailed message.
      • ItemStreamException

        public ItemStreamException​(java.lang.String msg,
                                   java.lang.Throwable nested)
        Constructs a new instance with a message and nested exception.
        参数:
        msg - the exception message.
        nested - the cause of the exception.
      • ItemStreamException

        public ItemStreamException​(java.lang.Throwable nested)
        Constructs a new instance with a nested exception and empty message.
        参数:
        nested - the cause of the exception.