home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 October / Chip_1997-10_cd.bin / tema / sybase / powerj / java.z / MalformedURLException.java < prev    next >
Text File  |  1996-05-03  |  2KB  |  49 lines

  1. /*
  2.  * @(#)MalformedURLException.java    1.6 95/09/08
  3.  * 
  4.  * Copyright (c) 1994 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * Permission to use, copy, modify, and distribute this software and its
  7.  * documentation for NON-COMMERCIAL purposes and without fee is hereby
  8.  * granted provided that this copyright notice appears in all copies. Please
  9.  * refer to the file "copyright.html" for further important copyright and
  10.  * licensing information.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
  15.  * OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY
  16.  * LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR
  17.  * ITS DERIVATIVES.
  18.  */
  19.  
  20. package java.net;
  21.  
  22. import java.io.IOException;
  23.  
  24. /**
  25.  * Signals that a malformed URL has occurred.
  26.  * @version 1.6, 08 Sep 1995
  27.  * @author     Arthur van Hoff
  28.  */
  29. public class MalformedURLException extends IOException {
  30.  
  31.     /**
  32.      * Constructs a MalformedURLException with no detail message.  A
  33.      * detail message is a String that describes this particular 
  34.      * exception.
  35.      */
  36.     public MalformedURLException() {
  37.     }
  38.  
  39.     /**
  40.      * Constructs a MalformedURLException with the specified detail 
  41.      * message.  A detail message is a String that describes this 
  42.      * particular exception.
  43.      * @param msg the detail message
  44.      */
  45.     public MalformedURLException(String msg) {
  46.     super(msg);
  47.     }
  48. }
  49.