java.rmi
Class MarshalException

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable 
      extended by java.lang.Exception sample code for java.lang.Exception definition code for java.lang.Exception 
          extended by java.io.IOException sample code for java.io.IOException definition code for java.io.IOException 
              extended by java.rmi.RemoteException sample code for java.rmi.RemoteException definition code for java.rmi.RemoteException 
                  extended by java.rmi.MarshalException
All Implemented Interfaces:
Serializable sample code for java.io.Serializable definition code for java.io.Serializable

public class MarshalException
extends RemoteException sample code for java.rmi.RemoteException definition code for java.rmi.RemoteException

A MarshalException is thrown if a java.io.IOException occurs while marshalling the remote call header, arguments or return value for a remote method call. A MarshalException is also thrown if the receiver does not support the protocol version of the sender.

If a MarshalException occurs during a remote method call, the call may or may not have reached the server. If the call did reach the server, parameters may have been deserialized. A call may not be retransmitted after a MarshalException and reliably preserve "at most once" call semantics.

Since:
JDK1.1
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.rmi.RemoteException sample code for java.rmi.RemoteException definition code for java.rmi.RemoteException
detail sample code for java.rmi.RemoteException.detail definition code for java.rmi.RemoteException.detail
 
Constructor Summary
MarshalException sample code for java.rmi.MarshalException.MarshalException(java.lang.String) definition code for java.rmi.MarshalException.MarshalException(java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  s)
          Constructs a MarshalException with the specified detail message.
MarshalException sample code for java.rmi.MarshalException.MarshalException(java.lang.String, java.lang.Exception) definition code for java.rmi.MarshalException.MarshalException(java.lang.String, java.lang.Exception) (String sample code for java.lang.String definition code for java.lang.String  s, Exception sample code for java.lang.Exception definition code for java.lang.Exception  ex)
          Constructs a MarshalException with the specified detail message and nested exception.
 
Method Summary
 
Methods inherited from class java.rmi.RemoteException sample code for java.rmi.RemoteException definition code for java.rmi.RemoteException
getCause sample code for java.rmi.RemoteException.getCause() definition code for java.rmi.RemoteException.getCause() , getMessage sample code for java.rmi.RemoteException.getMessage() definition code for java.rmi.RemoteException.getMessage()
 
Methods inherited from class java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
fillInStackTrace sample code for java.lang.Throwable.fillInStackTrace() definition code for java.lang.Throwable.fillInStackTrace() , getLocalizedMessage sample code for java.lang.Throwable.getLocalizedMessage() definition code for java.lang.Throwable.getLocalizedMessage() , getStackTrace sample code for java.lang.Throwable.getStackTrace() definition code for java.lang.Throwable.getStackTrace() , initCause sample code for java.lang.Throwable.initCause(java.lang.Throwable) definition code for java.lang.Throwable.initCause(java.lang.Throwable) , printStackTrace sample code for java.lang.Throwable.printStackTrace() definition code for java.lang.Throwable.printStackTrace() , printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintStream) definition code for java.lang.Throwable.printStackTrace(java.io.PrintStream) , printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) definition code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) , setStackTrace sample code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[]) definition code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[]) , toString sample code for java.lang.Throwable.toString() definition code for java.lang.Throwable.toString()
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Constructor Detail

MarshalException sample code for java.rmi.MarshalException(java.lang.String) definition code for java.rmi.MarshalException(java.lang.String)

public MarshalException(String sample code for java.lang.String definition code for java.lang.String  s)
Constructs a MarshalException with the specified detail message.

Parameters:
s - the detail message
Since:
JDK1.1

MarshalException sample code for java.rmi.MarshalException(java.lang.String, java.lang.Exception) definition code for java.rmi.MarshalException(java.lang.String, java.lang.Exception)

public MarshalException(String sample code for java.lang.String definition code for java.lang.String  s,
                        Exception sample code for java.lang.Exception definition code for java.lang.Exception  ex)
Constructs a MarshalException with the specified detail message and nested exception.

Parameters:
s - the detail message
ex - the nested exception
Since:
JDK1.1