- 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/UnmarshalException.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/UnmarshalException.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 UnmarshalException 41 extends RemoteException { 40 /** 41 * Thrown if an exception occurs while unmarshalling parameters or results 42 * of a remote method call. This includes:<br><ul> 43 * <li>if an exception occurs while unmarshalling the call header</li> 44 * <li>if the protocol for the return value is invalid</li> 45 * <li>if a java.io.IOException occurs unmarshalling parameters (on the 46 * server side) or the return value (on the client side).</li> 47 * <li>if a java.lang.ClassNotFoundException occurs during unmarshalling 48 * parameters or return values</li> 49 * <li>if no skeleton can be loaded on the server-side; note that skeletons 50 * are required in the 1.1 stub protocol, but not in the 1.2 stub 51 * protocol.</li> 52 * <li>if the method hash is invalid (i.e., missing method).</li> 53 * <li>if there is a failure to create a remote reference object for a remote 54 * object's stub when it is unmarshalled.</li> 55 * </ul> 56 * 57 * @author unknown 58 * @since 1.1 59 * @status updated to 1.4 60 */ 61 public class UnmarshalException extends RemoteException 62 { 63 /** 64 * Compatible with JDK 1.1+. 65 */ 66 private static final long serialVersionUID = 594380845140740218l; 42 67 43 public static final long serialVersionUID = 594380845140740218l; 68 /** 69 * Create an exception with a message. 70 * 71 * @param s the message 72 */ 73 public UnmarshalException(String s) 74 { 75 super(s); 76 } 44 77 45 public UnmarshalException(String s) { 46 super(s); 78 /** 79 * Create an exception with a message and a cause. 80 * 81 * @param s the message 82 * @param e the cause 83 */ 84 public UnmarshalException(String s, Exception e) 85 { 86 super(s, e); 87 } 47 88 } 48 49 public UnmarshalException(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.
