ibis.rmi
Class UnmarshalException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
ibis.ipl.IbisIOException
ibis.rmi.RemoteException
ibis.rmi.UnmarshalException
- All Implemented Interfaces:
- java.io.Serializable
- public class UnmarshalException
- extends RemoteException
An UnmarshalException
is thrown when an unmarshalling error
occurs.
It is thrown on one of the following conditions:
- an exception occurs while unmarshalling the call header
- an
java.io.IOException
or
java.lang.ClassNotFoundException
occurs while unmarshalling
parameters or unmarshalling the return value
- the method identification is wrong (server side)
- a remote reference object for an unmarshalled stub cannot be
created
- See Also:
- Serialized Form
Constructor Summary |
UnmarshalException(java.lang.String s)
Constructs an UnmarshalException with the specified
detail message. |
UnmarshalException(java.lang.String s,
java.lang.Exception ex)
Constructs an UnmarshalException with the specified
detail message and nested exception. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
UnmarshalException
public UnmarshalException(java.lang.String s)
- Constructs an
UnmarshalException
with the specified
detail message.
- Parameters:
s
- the detail message
UnmarshalException
public UnmarshalException(java.lang.String s,
java.lang.Exception ex)
- Constructs an
UnmarshalException
with the specified
detail message and nested exception.
- Parameters:
s
- the detail messageex
- the nested exception
The Ibis project