Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4092486

rmic can generate code that will not compile with javac

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 1.2.0
    • 1.1.4
    • core-libs
    • 1.2fcs
    • x86
    • windows_95
    • Not verified



      Name: bk70084 Date: 11/12/97


      'rmic' can't compile correctly, if one or more
      methods of remote server throw exceptions,
      that extend Throwable class. If they extend
      Exception class, all Ok.
      I don't know, is this a bug?
      But it is very strange.

      (1) javac SampleServer.java
      (2) rmic SampleServer

      Output:
      I/O exception
      I/O exception
      2 errors


      //----------------------SampleServer.java-----------------
       import java.rmi.*;
       import java.rmi.server.*;

       class SampleException extends Throwable{
           SampleException(){}
       }

       interface SampleInterface extends Remote{
          public void f() throws RemoteException, SampleException;
       }

       class SampleServer extends UnicastRemoteObject implements SampleInterface{
          public SampleServer() throws RemoteException{}
          public void f() throws RemoteException, SampleException{}
       }

      (Review ID: 19664)
      ======================================================================

            peterjones Peter Jones (Inactive)
            bklocksunw Brian Klock (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: