java.rmi.activation
Class ActivationException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.rmi.activation.ActivationException
- Direct Known Subclasses:
- UnknownGroupException, UnknownObjectException
- public class ActivationException
- extends Exception
General exception used by the activation interfaces.
- Since:
- JDK1.2
- See Also:
- Serialized Form
Field Summary |
Throwable |
detail
Nested Exception to hold wrapped remote exceptions. |
Method Summary |
String |
getMessage()
Produces the message, include the message from the nested
exception if there is one. |
void |
printStackTrace()
Prints the composite message to System.err . |
void |
printStackTrace(PrintStream ps)
Prints the composite message and the embedded stack trace to
the specified stream ps . |
void |
printStackTrace(PrintWriter pw)
Prints the composite message and the embedded stack trace to
the specified print writer pw |
detail
public Throwable detail
- Nested Exception to hold wrapped remote exceptions.
ActivationException
public ActivationException()
- Constructs an
ActivationException
with no specified
detail message.
- Since:
- JDK1.2
ActivationException
public ActivationException(String s)
- Constructs an
ActivationException
with detail
message, s
.
- Parameters:
s
- the detail message- Since:
- JDK1.2
ActivationException
public ActivationException(String s,
Throwable ex)
- Constructs an
ActivationException
with detail message,
s
, and detail exception ex
.
- Parameters:
s
- detail messageex
- detail exception- Since:
- JDK1.2
getMessage
public String getMessage()
- Produces the message, include the message from the nested
exception if there is one.
- Returns:
- the message
- Overrides:
- getMessage in class Throwable
- Since:
- JDK1.2
printStackTrace
public void printStackTrace(PrintStream ps)
- Prints the composite message and the embedded stack trace to
the specified stream
ps
.
- Parameters:
ps
- the print stream- Overrides:
- printStackTrace in class Throwable
- Since:
- JDK1.2
printStackTrace
public void printStackTrace()
- Prints the composite message to
System.err
.
- Overrides:
- printStackTrace in class Throwable
- Since:
- JDK1.2
printStackTrace
public void printStackTrace(PrintWriter pw)
- Prints the composite message and the embedded stack trace to
the specified print writer
pw
- Parameters:
pw
- the print writer- Overrides:
- printStackTrace in class Throwable
- Since:
- JDK1.2
Submit a bug or feature Version 1.2 of Java Platform API Specification
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.