- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/lang/UnsupportedOperationException.java (modified) (3 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/lang/UnsupportedOperationException.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 /* UnsupportedOperationException.java -- Exception thrown when an2 unsupported operation is attempted on an object3 Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.1 /* UnsupportedOperationException.java -- 2 3 Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc. 4 4 5 5 This file is part of GNU Classpath. … … 9 9 the Free Software Foundation; either version 2, or (at your option) 10 10 any later version. 11 11 12 12 GNU Classpath is distributed in the hope that it will be useful, but 13 13 WITHOUT ANY WARRANTY; without even the implied warranty of … … 40 40 package java.lang; 41 41 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 /** 49 43 * This exception is thrown by an object when an operation is 50 44 * requested of it that it does not support. 51 45 * 52 * @since JDK 1.253 *54 46 * @author Warren Levy <[email protected]> 55 * @date September 18, 1998. 47 * @since 1.2 48 * @status updated to 1.4 56 49 */ 57 50 public class UnsupportedOperationException extends RuntimeException 58 51 { 59 static final long serialVersionUID = -1242599979055084673L; 52 /** 53 * Compatible with JDK 1.2+. 54 */ 55 private static final long serialVersionUID = -1242599979055084673L; 60 56 61 57 /** 62 58 * Create an exception without a message. 63 59 */ 64 public UnsupportedOperationException() 60 public UnsupportedOperationException() 65 61 { 66 super();67 62 } 68 63 69 64 /** 70 65 * Create an exception with a message. 66 67 71 68 */ 72 public UnsupportedOperationException( String s)69 public UnsupportedOperationException() 73 70 { 74 71 super(s); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
