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/rmi/UnmarshalException.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    1 /*
    2   Copyright (c) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
     1/*
     2  Free Software Foundation, Inc.
    33
    44This file is part of GNU Classpath.
     
    88the Free Software Foundation; either version 2, or (at your option)
    99any later version.
    10  
     10
    1111GNU Classpath is distributed in the hope that it will be useful, but
    1212WITHOUT ANY WARRANTY; without even the implied warranty of
     
    3838package java.rmi;
    3939
    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 */
     61public class UnmarshalException extends RemoteException
     62{
     63  /**
     64   * Compatible with JDK 1.1+.
     65   */
     66  private static final long serialVersionUID = 594380845140740218l;
    4267
    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  }
    4477
    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  }
    4788}
    48 
    49 public UnmarshalException(String s, Exception e) {
    50         super(s, e);
    51 }
    52 
    53 }
Note: See TracChangeset for help on using the changeset viewer.