Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.
Copyright © 2006 Sun Microsystems, Inc. All rights reserved.
java.rmi.server
Class ServerCloneException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.lang.CloneNotSupportedException
|
+--java.rmi.server.ServerCloneException
- All Implemented Interfaces:
- java.io.Serializable
- public class ServerCloneException
- extends java.lang.CloneNotSupportedException
A ServerCloneException is thrown if a remote exception occurs
during the cloning of a UnicastRemoteObject.
- Since:
- JDK1.1
- See Also:
UnicastRemoteObject.clone(), Serialized Form
|
Field Summary |
java.lang.Exception |
detail
Nested exception for ServerCloneException. |
|
Constructor Summary |
ServerCloneException(java.lang.String s)
Constructs an ServerCloneException with the specified
detail message. |
ServerCloneException(java.lang.String s,
java.lang.Exception ex)
Constructs an ServerCloneException with the specified
detail message and nested exception. |
|
Method Summary |
java.lang.String |
getMessage()
Obtains the message, include the message from the nested
exception if there is one. |
void |
printStackTrace()
Returns the detail message, including the message from the nested
exception if there is one. |
void |
printStackTrace(java.io.PrintStream ps)
Prints the composite message and the embedded stack trace to
the specified stream ps. |
void |
printStackTrace(java.io.PrintWriter pw)
Prints the composite message and the embedded stack trace to
the specified writer pw. |
| 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 |
detail
public java.lang.Exception detail
- Nested exception for ServerCloneException.
- Since:
- JDK1.1
ServerCloneException
public ServerCloneException(java.lang.String s)
- Constructs an
ServerCloneException with the specified
detail message.
- Parameters:
s - the detail message.- Since:
- JDK1.1
ServerCloneException
public ServerCloneException(java.lang.String s,
java.lang.Exception ex)
- Constructs an
ServerCloneException with the specified
detail message and nested exception.
- Parameters:
s - the detail message.ex - the nested exception- Since:
- JDK1.1
getMessage
public java.lang.String getMessage()
- Obtains the message, include the message from the nested
exception if there is one.
- Overrides:
getMessage in class java.lang.Throwable
- Following copied from class:
java.lang.Throwable
- Returns:
- the error message string of this
Throwable
object if it was created with an
error message string; or null if it was
created with no error message.
printStackTrace
public void printStackTrace(java.io.PrintStream ps)
- Prints the composite message and the embedded stack trace to
the specified stream
ps.
- Overrides:
printStackTrace in class java.lang.Throwable
- Parameters:
ps - the print stream- Since:
- 1.2
printStackTrace
public void printStackTrace()
- Returns the detail message, including the message from the nested
exception if there is one.
- Overrides:
printStackTrace in class java.lang.Throwable
- Since:
- JDK1.1
printStackTrace
public void printStackTrace(java.io.PrintWriter pw)
- Prints the composite message and the embedded stack trace to
the specified writer
pw.
- Overrides:
printStackTrace in class java.lang.Throwable
- Parameters:
pw - the print writer- Since:
- 1.2
Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.
For more information, please consult the JSR 66 specification.