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/activation/ActivateFailedException.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
     
    4040import java.rmi.RemoteException;
    4141
    42 public class ActivateFailedException
    43         extends RemoteException {
     42/**
     43 * Thrown when activation fails on a remote call to an activatable object.
     44 *
     45 * @author unknown
     46 * @since 1.2
     47 * @status updated to 1.4
     48 */
     49public class ActivateFailedException extends RemoteException
     50{
     51  /**
     52   * Compatible with JDK 1.2+.
     53   */
     54  private static final long serialVersionUID = 4863550261346652506L;
    4455
    45 public ActivateFailedException(String s) {
    46         super(s);
     56  /**
     57   * Create an exception with a message.
     58   *
     59   * @param s the message
     60   */
     61  public ActivateFailedException(String s)
     62  {
     63    super(s);
     64  }
     65
     66  /**
     67   * Create an exception with a message and a cause.
     68   *
     69   * @param s the message
     70   * @param ex the cause
     71   */
     72  public ActivateFailedException(String s, Exception ex)
     73  {
     74    super(s, ex);
     75  }
    4776}
    48 
    49 public ActivateFailedException(String s, Exception ex) {
    50         super(s, ex);
    51 }
    52 
    53 }
Note: See TracChangeset for help on using the changeset viewer.