/[classpath]/classpath/java/awt/datatransfer/MimeTypeParseException.java
ViewVC logotype

Diff of /classpath/java/awt/datatransfer/MimeTypeParseException.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by mark, Tue Jan 22 22:26:58 2002 UTC revision 1.4 by ericb, Sun Feb 24 04:25:16 2002 UTC
# Line 1  Line 1 
1  /* MimeTypeParseException.java -- Thrown when MIME string couldn't be parsed.  /* MimeTypeParseException.java -- thrown when MIME string couldn't be parsed
2     Copyright (C) 2001 Free Software Foundation, Inc.     Copyright (C) 2001, 2002 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 41  package java.awt.datatransfer; Line 41  package java.awt.datatransfer;
41  /**  /**
42    * MIME string couldn't be parsed correctly.    * MIME string couldn't be parsed correctly.
43    *    *
44    * @author Mark Wielaard (mark@klomp.org)    * @author Mark Wielaard <mark@klomp.org>
45      * @status updated to 1.4
46    */    */
47  public class MimeTypeParseException extends Exception  public class MimeTypeParseException extends Exception
48  {  {
49      /**
50  /**     * Compatible with JDK 1.1+.
51    * Initializes a new instance of <code>MimeTypeParseException</code>     */
52    * without any message.    private static final long serialVersionUID = -5604407764691570741L;
53    */  
54  public    /**
55  MimeTypeParseException()     * Create a new instance without any message.
56  {     */
57    super();    public MimeTypeParseException()
58  }    {
59      }
60  /**  
61    * Initializes a new instance of <code>MimeTypeParseException</code>    /**
62    * with a specified detailed error message.     * Create a new instance with a specified detailed error message.
63    */     *
64  public     * @param message the message
65  MimeTypeParseException(String message)     */
66  {    public MimeTypeParseException(String message)
67    super(message);    {
68  }      super(message);
69      }
70  } // class MimeTypeParseException  } // class MimeTypeParseException
   

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26