* All files: Updated copyright to reflect Cygnus purchase.
[official-gcc.git] / libjava / java / net / MalformedURLException.java
blob10678f43fa378a0573a3bbc16508944879a7b4b8
1 // MalformedURLException.java
3 /* Copyright (C) 1999 Red Hat, Inc.
5 This file is part of libgcj.
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
9 details. */
11 package java.net;
13 /**
14 * @author Warren Levy <warrenl@cygnus.com>
15 * @date March 5, 1999.
18 /**
19 * Written using on-line Java Platform 1.2 API Specification, as well
20 * as "The Java Class Libraries", 2nd edition (Addison-Wesley, 1998).
21 * Status: Believed complete and correct.
24 public class MalformedURLException extends java.io.IOException
26 public MalformedURLException()
28 super();
31 public MalformedURLException(String msg)
33 super(msg);