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)
======================================================================
- relates to
-
JDK-4114502 rmic fails if remote inteface in named pkg refers to type in unnamed pkg
-
- Closed
-