Java org.springframework.remoting.support RemoteInvocationResult fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.remoting.support RemoteInvocationResult fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.remoting.support RemoteInvocationResult.

The text is from its open source code.

Subclass

org.springframework.remoting.support.RemoteInvocationResult has subclasses.
Click this link to see all its subclasses.

Constructor

RemoteInvocationResult(@Nullable Object value)
Create a new RemoteInvocationResult for the given result value.
RemoteInvocationResult(@Nullable Throwable exception)
Create a new RemoteInvocationResult for the given exception.

Method

ThrowablegetException()
Return the exception thrown by an unsuccessful invocation of the target method, if any.
ObjectgetValue()
Return the result value returned by a successful invocation of the target method, if any.
Objectrecreate()
Recreate the invocation result, either returning the result value in case of a successful invocation of the target method, or rethrowing the exception thrown by the target method.