1 /*2 * @(#)SyncFactoryException.java 1.4 04/03/113 *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 ;11 12 /**13 * Indicates an error with <code>SyncFactory</code> mechanism. A disconnected14 * RowSet implementation cannot be used without a <code>SyncProvider</code>15 * being successfully instantiated16 *17 * @version 0.218 * @author Jonathan Bruce19 * @see javax.sql.rowset.spi.SyncFactory20 * @see javax.sql.rowset.spi.SyncFactoryException21 */22 public class SyncFactoryException extends java.sql.SQLException {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 msg) {37 super(msg);38 }39 40 static final long serialVersionUID = -4354595476433200352L;41 }42 43 44