java.lang.Object
java.lang.Throwable
java.lang.Exception
java.sql.SQLException
javax.sql.rowset.serial.SerialException
- 所有已实现的接口:
-
Serializable
,Iterable<Throwable>
表示在序列化或反序列化SQL类型(如
BLOB、CLOB、STRUCT或ARRAY
)以及SQL类型(如DATALINK和JAVAOBJECT
)时出现错误
- 自版本:
- 1.5
- 参见:
-
Constructor Summary
ConstructorDescription创建一个没有消息的新SerialException
。SerialException
(String msg) 创建一个带有指定消息的新SerialException
。 -
Method Summary
Methods declared in class java.sql.SQLException
getErrorCode, getNextException, getSQLState, iterator, setNextException
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods declared in interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
SerialException
public SerialException()创建一个没有消息的新SerialException
。 -
SerialException
创建一个带有指定消息的新SerialException
。- 参数:
-
msg
- 详细消息
-