- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- java.io.ObjectStreamException
-
- java.io.InvalidClassException
-
- All Implemented Interfaces:
-
Serializable
public class InvalidClassException extends ObjectStreamException
当序列化运行时检测到类中的以下问题之一时抛出。- 类的串行版本与从流中读取的类描述符的类型不匹配
- 该类包含未知的数据类型
- 该类没有可访问的无参数构造函数
- 从以下版本开始:
- 1.1
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 InvalidClassException(String reason)
针对指定的原因报告InvalidClassException。InvalidClassException(String cname, String reason)
构造一个InvalidClassException对象。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 String
getMessage()
生成消息并包括类名(如果存在)。-
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, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
字段详细信息
-
classname
public String classname
无效类的名称
-
-
方法详细信息
-
getMessage
public String getMessage()
生成消息并包括类名(如果存在)。- 重写:
-
getMessage
在Throwable
- 结果
-
该
Throwable
实例的详细消息字符串(可能是null
)。
-
-