SkeletonMismatchExceptionpublic class SkeletonMismatchException extends RemoteException This exception is thrown when a call is received that does not
match the available skeleton. It indicates either that the
remote method names or signatures in this interface have changed or
that the stub class used to make the call and the skeleton
receiving the call were not generated by the same version of
the stub compiler (rmic ). |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public SkeletonMismatchException(String s)Constructs a new SkeletonMismatchException with
a specified detail message.
super(s);
|
|