declare namespace javax { namespace sql { namespace rowset { namespace serial { /** * Indicates and an error with the serialization or de-serialization of * SQL types such as BLOB, CLOB, STRUCT or ARRAY in * addition to SQL types such as DATALINK and JAVAOBJECT */ // @ts-ignore class SerialException extends java.sql.SQLException { /** * Creates a new SerialException without a * message. */ // @ts-ignore constructor() /** * Creates a new SerialException with the * specified message. * @param msg the detail message */ // @ts-ignore constructor(msg: java.lang.String | string) } } } } }