home *** CD-ROM | disk | FTP | other *** search
/ Late Night VRML 2.0 with Java CD-ROM / code.zip / Ch18 / multi / ConnectionRefusedException.java < prev    next >
Encoding:
Java Source  |  1997-02-21  |  147 b   |  7 lines

  1. package multi;
  2.  
  3. public class ConnectionRefusedException extends Exception {
  4.     public ConnectionRefusedException(String s) { super(s); }
  5. }
  6.  
  7.