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. package javax.sql.rowset.spi;
  8. import java.sql.SQLException;
  9. /**
  10. * Indicates an error with <code>SyncFactory</code> mechanism. A disconnected
  11. * RowSet implementation cannot be used without a <code>SyncProvider</code>
  12. * being successfully instantiated
  13. *
  14. * @version 0.2
  15. * @author Jonathan Bruce
  16. * @see javax.sql.rowset.spi.SyncFactory
  17. * @see javax.sql.rowset.spi.SyncFactoryException
  18. */
  19. public class SyncFactoryException extends java.sql.SQLException {
  20. /**
  21. * Creates new <code>SyncFactoryException</code> without detail message.
  22. */
  23. public SyncFactoryException() {
  24. }
  25. /**
  26. * Constructs an <code>SyncFactoryException</code> with the specified
  27. * detail message.
  28. *
  29. * @param msg the detail message.
  30. */
  31. public SyncFactoryException(String msg) {
  32. super(msg);
  33. }
  34. static final long serialVersionUID = -4354595476433200352L;
  35. }