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/RMISecurityException.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 import java.lang.SecurityException;
     40/**
     41 * Never thrown, but originally intended to wrap a java.lang.SecurityException.
     42 *
     43 * @author unknown
     44 * @since 1.1
     45 * @deprecated use {@link SecurityException} instead
     46 * @status updated to 1.4
     47 */
     48public class RMISecurityException extends SecurityException
     49{
     50  /**
     51   * Compatible with JDK 1.1.
     52   */
     53  private static final long serialVersionUID = -8433406075740433514L;
    4154
    42 public class RMISecurityException
    43         extends SecurityException {
     55  /**
     56   * Create an exception with a message.
     57   *
     58   * @param s the message
     59   * @deprecated no longer needed
     60   */
     61  public RMISecurityException(String n)
     62  {
     63    super(n);
     64  }
    4465
    45 public RMISecurityException(String n) {
    46         super(n);
     66  /**
     67   * Create an exception with a message and a cause.
     68   *
     69   * @param s the message
     70   * @param e the cause
     71   * @deprecated no longer needed
     72   */
     73  public RMISecurityException(String n, String a)
     74  {
     75    super(n);
     76  }
    4777}
    48 
    49 public RMISecurityException(String n, String a) {
    50         super(n);
    51 }
    52 
    53 }
Note: See TracChangeset for help on using the changeset viewer.