| |
|
| org.jboss.test.util.ejb.RemoteAssertionFailedError
RemoteAssertionFailedError | public class RemoteAssertionFailedError extends AssertionFailedError (Code) | | RemoteAssertionFailedError is the client-side view of an assertion
failed error on the server.
All throwables caught on the server are wrapped with a RemoteTestException
and rethrown. On the client side the exception is caught, and if the
server side exception is an instance of AssertionFailedError, it is
wrapped with an instance of this class and rethrown. That makes the
exception an instance of AssertionFailedError so it is reconized as
a failure and not an Error.
author: Dain Sundstrom version: $Revision: 57211 $ |
Constructor Summary | |
public | RemoteAssertionFailedError(AssertionFailedError e, String remoteStackTrace) Constructs a remote assertion failed error based on the specified
AssertionFailedError and remote stack trace. |
RemoteAssertionFailedError | public RemoteAssertionFailedError(AssertionFailedError e, String remoteStackTrace)(Code) | | Constructs a remote assertion failed error based on the specified
AssertionFailedError and remote stack trace.
Parameters: e - the AssertionFailedError that was thrown on the server side Parameters: remoteStackTrace - the stack trace of the assertion failed errorexactly as it appeared on the server side |
getMessage | public String getMessage()(Code) | | Gets the message exactly as it appeared on server side.
the message exactly as it appeared on server side |
getRemoteAssertionFailedError | public AssertionFailedError getRemoteAssertionFailedError()(Code) | | Gets the assertion failed error object from the server side.
Note: the stack trace of this object is not available because
exceptions don't seralize the stack trace. Use
getRemoteStackTrace to get the stack trace as it appeared
on the server.
|
getRemoteStackTrace | public String getRemoteStackTrace()(Code) | | Gets the stack trace exactly as it appeared on the server side.
the stack trace exactly as it appeared on the server side |
printStackTrace | public void printStackTrace(java.io.PrintStream ps)(Code) | | Prints the stack trace exactly as it appeared on the server side.
Parameters: ps - the PrintStream on which the stack trace is printed |
printStackTrace | public void printStackTrace()(Code) | | Prints the stack trace exactly as it appeared on the server side.
|
printStackTrace | public void printStackTrace(java.io.PrintWriter pw)(Code) | | Prints the stack trace exactly as it appeared on the server side.
Parameters: pw - the PrintWriter on which the stack trace is printed |
|
|
|