home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / palmos / other-os / jsm-initial2.jar / jSyncManager / ConduitNotFoundException.java < prev    next >
Text File  |  2002-10-24  |  641b  |  25 lines

  1. package jSyncManager;
  2.  
  3. /** The ConduitNotFoundException.
  4.   * This exception is generated when the user specifies the installation
  5.   * of a jConduit which cannot be found.
  6.   * @author Brad BARCLAY <bbarclay@acm.org>
  7.   * @version 1.0
  8.   */
  9.   
  10. public class ConduitNotFoundException extends Exception {
  11. /** Constructs a new ConduitNotFoundException object.
  12.   */
  13.  
  14. public ConduitNotFoundException() {
  15. }
  16. /** Constructs a new ConduitNotFoundException object, using the
  17.   * specified message text.
  18.   * @param s a text message to accompiany this exception.
  19.   */
  20.  
  21. public ConduitNotFoundException(String s) {
  22.     super(s);
  23. }
  24. }
  25.