- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/rmi/AccessException.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/rmi/AccessException.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 /* 2 Copyright (c) 1996, 1997, 1998, 1999Free Software Foundation, Inc.1 /* 2 Free Software Foundation, Inc. 3 3 4 4 This file is part of GNU Classpath. … … 8 8 the Free Software Foundation; either version 2, or (at your option) 9 9 any later version. 10 10 11 11 GNU Classpath is distributed in the hope that it will be useful, but 12 12 WITHOUT ANY WARRANTY; without even the implied warranty of … … 38 38 package java.rmi; 39 39 40 public class AccessException 41 extends RemoteException { 40 /** 41 * Thrown to indicate that the caller does not have permission to access 42 * certain data, such as <code>bind</code> in an ActivationSystem. 43 * 44 * @author unknown 45 * @see Naming 46 * @see ActivationSystem 47 * @since 1.1 48 */ 49 public class AccessException extends RemoteException 50 { 51 /** 52 * Compatible with JDK 1.1+. 53 */ 54 private static final long serialVersionUID = 6314925228044966088l; 42 55 43 public static final long serialVersionUID = 6314925228044966088l; 56 /** 57 * Create an exception with a message. 58 * 59 * @param s the message 60 */ 61 public AccessException(String s) 62 { 63 super(s); 64 } 44 65 45 public AccessException(String s) { 46 super(s); 66 /** 67 * Create an exception with a message and a cause. 68 * 69 * @param s the message 70 * @param e the cause 71 */ 72 public AccessException(String s, Exception e) 73 { 74 super(s, e); 75 } 47 76 } 48 49 public AccessException(String s, Exception e) {50 super (s, e);51 }52 53 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
