KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > sql > rowset > spi > SyncFactoryException


1 /*
2  * @(#)SyncFactoryException.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.spi;
9
10 import java.sql.SQLException JavaDoc;
11
12 /**
13  * Indicates an error with <code>SyncFactory</code> mechanism. A disconnected
14  * RowSet implementation cannot be used without a <code>SyncProvider</code>
15  * being successfully instantiated
16  *
17  * @version 0.2
18  * @author Jonathan Bruce
19  * @see javax.sql.rowset.spi.SyncFactory
20  * @see javax.sql.rowset.spi.SyncFactoryException
21  */

22 public class SyncFactoryException extends java.sql.SQLException JavaDoc {
23
24     /**
25      * Creates new <code>SyncFactoryException</code> without detail message.
26      */

27     public SyncFactoryException() {
28     }
29
30     /**
31      * Constructs an <code>SyncFactoryException</code> with the specified
32      * detail message.
33      *
34      * @param msg the detail message.
35      */

36     public SyncFactoryException(String JavaDoc msg) {
37         super(msg);
38     }
39         
40     static final long serialVersionUID = -4354595476433200352L;
41 }
42
43
44
Popular Tags