1 /* 2 * @(#)SerialException.java 1.4 04/03/11 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package javax.sql.rowset.serial; 9 10 import java.sql.SQLException; 11 12 /** 13 * Indicates and an error with the serialization or de-serialization of 14 * SQL types such as <code>BLOB, CLOB, STRUCT or ARRAY</code> in 15 * addition to SQL types such as <code>DATALINK and JAVAOBJECT</code> 16 * 17 * @version 0.1 18 */ 19 public class SerialException extends java.sql.SQLException { 20 21 /** 22 * Creates a new <code>SerialException</code> without a 23 * message. 24 */ 25 public SerialException() { 26 } 27 28 /** 29 * Creates a new <code>SerialException</code> with the 30 * specified message. 31 * 32 * @param msg the detail message 33 */ 34 public SerialException(String msg) { 35 super(msg); 36 } 37 38 static final long serialVersionUID = -489794565168592690L; 39 } 40