java.rmi
Class  UnexpectedException
java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--java.rmi.RemoteException
                          |
                          +--java.rmi.UnexpectedException
- All Implemented Interfaces: 
 - java.io.Serializable
 
- public class UnexpectedException
- extends RemoteException
  
An UnexpectedException is thrown if the client of a
 remote method call receives, as a result of the call, a checked
 exception that is not among the checked exception types declared in the
 throws clause of the method in the remote interface.
- Since: 
 - JDK1.1
 
- See Also: 
 - Serialized Form
 
 
| 
Constructor Summary | 
UnexpectedException(java.lang.String s)
 
          Constructs an UnexpectedException with the specified
 detail message. | 
UnexpectedException(java.lang.String s,
                    java.lang.Exception ex)
 
          Constructs a UnexpectedException with the specified
 detail message and nested exception. | 
 
 
| Methods inherited from class java.lang.Throwable | 
fillInStackTrace, getLocalizedMessage, toString | 
 
| Methods inherited from class java.lang.Object | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait | 
 
UnexpectedException
public UnexpectedException(java.lang.String s)
- Constructs an 
UnexpectedException with the specified
 detail message.
- Parameters:
 s - the detail message- Since: 
 - JDK1.1
 
 
 
UnexpectedException
public UnexpectedException(java.lang.String s,
                           java.lang.Exception ex)
- Constructs a 
UnexpectedException with the specified
 detail message and nested exception.
- Parameters:
 s - the detail messageex - the nested exception- Since: 
 - JDK1.1
 
 
 
Copyright 1994-2002 Sun Microsystems, Inc. All Rights Reserved.