Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/lang/UnsupportedOperationException.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    1 /* UnsupportedOperationException.java -- Exception thrown when an
    2    unsupported operation is attempted on an object
    3    Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.
     1/* UnsupportedOperationException.java --
     2   
     3   Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.
    44
    55This file is part of GNU Classpath.
     
    99the Free Software Foundation; either version 2, or (at your option)
    1010any later version.
    11  
     11
    1212GNU Classpath is distributed in the hope that it will be useful, but
    1313WITHOUT ANY WARRANTY; without even the implied warranty of
     
    4040package java.lang;
    4141
    42 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
    43  * "The Java Language Specification", ISBN 0-201-63451-1
    44  * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.
    45  * Status:  Believed complete and correct.
    46  */
    47 
    48 /**
     42/**
    4943 * This exception is thrown by an object when an operation is
    5044 * requested of it that it does not support.
    5145 *
    52  * @since JDK 1.2
    53  *
    5446 * @author Warren Levy <[email protected]>
    55  * @date September 18, 1998.
     47 * @since 1.2
     48 * @status updated to 1.4
    5649 */
    5750public class UnsupportedOperationException extends RuntimeException
    5851{
    59   static final long serialVersionUID = -1242599979055084673L;
     52  /**
     53   * Compatible with JDK 1.2+.
     54   */
     55  private static final long serialVersionUID = -1242599979055084673L;
    6056
    6157  /**
    6258   * Create an exception without a message.
    6359   */
    64   public UnsupportedOperationException() 
     60  public UnsupportedOperationException()
    6561  {
    66     super();
    6762  }
    6863
    6964  /**
    7065   * Create an exception with a message.
     66
     67
    7168   */
    72   public UnsupportedOperationException( String s )
     69  public UnsupportedOperationException()
    7370  {
    7471    super(s);
Note: See TracChangeset for help on using the changeset viewer.