java.rmi.server
Class ServerCloneException

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.lang.CloneNotSupportedException sample code for java.lang.CloneNotSupportedException definition code for java.lang.CloneNotSupportedException 
              extended by java.rmi.server.ServerCloneException
All Implemented Interfaces:
Serializable sample code for java.io.Serializable definition code for java.io.Serializable

public class ServerCloneException
extends CloneNotSupportedException sample code for java.lang.CloneNotSupportedException definition code for java.lang.CloneNotSupportedException

A ServerCloneException is thrown if a remote exception occurs during the cloning of a UnicastRemoteObject.

As of release 1.4, this exception has been retrofitted to conform to the general purpose exception-chaining mechanism. The "nested exception" that may be provided at construction time and accessed via the public detail sample code for java.rmi.server.ServerCloneException.detail definition code for java.rmi.server.ServerCloneException.detail field is now known as the cause, and may be accessed via the Throwable.getCause() sample code for java.lang.Throwable.getCause() definition code for java.lang.Throwable.getCause() method, as well as the aforementioned "legacy field."

Invoking the method Throwable.initCause(Throwable) sample code for java.lang.Throwable.initCause(java.lang.Throwable) definition code for java.lang.Throwable.initCause(java.lang.Throwable) on an instance of ServerCloneException always throws IllegalStateException sample code for java.lang.IllegalStateException definition code for java.lang.IllegalStateException .

Since:
JDK1.1
See Also:
UnicastRemoteObject.clone() sample code for java.rmi.server.UnicastRemoteObject.clone() definition code for java.rmi.server.UnicastRemoteObject.clone() , Serialized Form

Field Summary
 Exception sample code for java.lang.Exception definition code for java.lang.Exception detail sample code for java.rmi.server.ServerCloneException.detail definition code for java.rmi.server.ServerCloneException.detail
          The cause of the exception.
 
Constructor Summary
ServerCloneException sample code for java.rmi.server.ServerCloneException.ServerCloneException(java.lang.String) definition code for java.rmi.server.ServerCloneException.ServerCloneException(java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  s)
          Constructs a ServerCloneException with the specified detail message.
ServerCloneException sample code for java.rmi.server.ServerCloneException.ServerCloneException(java.lang.String, java.lang.Exception) definition code for java.rmi.server.ServerCloneException.ServerCloneException(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  cause)
          Constructs a ServerCloneException with the specified detail message and cause.
 
Method Summary
 Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable getCause sample code for java.rmi.server.ServerCloneException.getCause() definition code for java.rmi.server.ServerCloneException.getCause() ()
          Returns the cause of this exception.
 String sample code for java.lang.String definition code for java.lang.String getMessage sample code for java.rmi.server.ServerCloneException.getMessage() definition code for java.rmi.server.ServerCloneException.getMessage() ()
          Returns the detail message, including the message from the cause, if any, of this exception.
 
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)
 

Field Detail

detail sample code for java.rmi.server.ServerCloneException.detail

public Exception sample code for java.lang.Exception definition code for java.lang.Exception  detail
The cause of the exception.

This field predates the general-purpose exception chaining facility. The Throwable.getCause() sample code for java.lang.Throwable.getCause() definition code for java.lang.Throwable.getCause() method is now the preferred means of obtaining this information.

Constructor Detail

ServerCloneException sample code for java.rmi.server.ServerCloneException(java.lang.String) definition code for java.rmi.server.ServerCloneException(java.lang.String)

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

Parameters:
s - the detail message.

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

public ServerCloneException(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  cause)
Constructs a ServerCloneException with the specified detail message and cause.

Parameters:
s - the detail message.
cause - the cause
Method Detail

getMessage sample code for java.rmi.server.ServerCloneException.getMessage() definition code for java.rmi.server.ServerCloneException.getMessage()

public String sample code for java.lang.String definition code for java.lang.String  getMessage()
Returns the detail message, including the message from the cause, if any, of this exception.

Overrides:
getMessage sample code for java.lang.Throwable.getMessage() definition code for java.lang.Throwable.getMessage() in class Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
Returns:
the detail message

getCause sample code for java.rmi.server.ServerCloneException.getCause() definition code for java.rmi.server.ServerCloneException.getCause()

public Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable  getCause()
Returns the cause of this exception. This method returns the value of the detail sample code for java.rmi.server.ServerCloneException.detail definition code for java.rmi.server.ServerCloneException.detail field.

Overrides:
getCause sample code for java.lang.Throwable.getCause() definition code for java.lang.Throwable.getCause() in class Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
Returns:
the cause, which may be null.
Since:
1.4