Package com.bea.wli.sb.transports
Class TransportException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.bea.wli.sb.transports.TransportException
- All Implemented Interfaces:
Serializable
Represents an exception within the OSB Transport subsystem (either in a
specific transport provider or in the transport framework itself).
A transport exception can be optionally initialized with a combination
of error message, code and cause.
The usage of the source
If set, the error code is usually one of:
TransportManager.TRANSPORT_ERROR_GENERIC
TransportManager.TRANSPORT_ERROR_CONNECTION
TransportManager.TRANSPORT_ERROR_APPLICATION
errorPayload
is deprecated.
In case of error in the outbound transport call, a transport provider
may throw a TransportException and propagate the error back to the
pipeline instead of scheduling the callback
TransportSendListener.onError(OutboundTransportMessageContext, String, String)
If the inbound transport endpoint at the other end of the pipeline is soap service,
and unless an error handler customizes the response, the error code and error message
will appear in the soap fault
Since 11.1.1.4, instances of this class can also specify additional metadata that can be interpreted
by the pipeline and/or inbound transport.
For more info, see setJavaFault(java.lang.Throwable)
and setOpaqueData(java.util.Map<java.lang.String, java.lang.Object>)
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a TransportException.TransportException
(com.bea.alsb.common.catalog.CatalogMessage message) TransportException
(com.bea.alsb.common.catalog.CatalogMessage message, Throwable cause) TransportException
(String msg) Constructs a TransportException with the specified message text.TransportException
(String message, Source errorPayload) Deprecated.TransportException
(String msg, String errorCode) Constructs a TransportException with the specified message text and specified error codeTransportException
(String message, Throwable cause) Constructs a TransportException with the specified detail message and cause.TransportException
(String message, Throwable cause, String errorCode) Constructs a TransportException with the specified detail message and cause and error code.TransportException
(Throwable cause) Constructs a TransportException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).TransportException
(Throwable cause, String errorCode) Constructs a TransportException with the specified cause and error code. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Get the java fault metadata.Get the opaque data.static TransportException
newInstance
(Throwable cause) Most transport SDK API signatures declare only TransportException to be thrown.setJavaFault
(Throwable fault) When throwing an exception on the request thread, instruct the pipeline to add a throwable to the $fault variable.setOpaqueData
(Map<String, Object> data) Stores opaque (i.e.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TransportException
public TransportException()Constructs a TransportException. -
TransportException
Constructs a TransportException with the specified message text.- Parameters:
msg
- Message text.
-
TransportException
Constructs a TransportException with the specified message text and specified error code- Parameters:
msg
- Message text.errorCode
- error code
-
TransportException
Constructs a TransportException with the specified detail message and cause.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
TransportException
Constructs a TransportException with the specified detail message and cause and error code.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)errorCode
- error code
-
TransportException
Constructs a TransportException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause). This constructor is useful for exceptions that are little more than wrappers for other throwables (for example,PrivilegedActionException
).- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
TransportException
Constructs a TransportException with the specified cause and error code.- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)errorCode
- error code
-
TransportException
Deprecated.- Parameters:
message
- error messageerrorPayload
- error payload source
-
TransportException
public TransportException(com.bea.alsb.common.catalog.CatalogMessage message) -
TransportException
-
-
Method Details
-
getErrorPayload
Deprecated.- Returns:
- error payload for transport exception
-
getErrorCode
-
newInstance
Most transport SDK API signatures declare only TransportException to be thrown. This utility method will wrap any Transport or non-Transport exception appropriately in a TransportException. Typical usage isvoid someAPI() throws TransportException { try { .... } catch (Exception e) { throw TransportException.newInstance(e); } }
- Parameters:
cause
- original cause of the exception- Returns:
- new TransportException that wraps the original cause
-
setJavaFault
When throwing an exception on the request thread, instruct the pipeline to add a throwable to the $fault variable. This is typically used by Outbound Transport Endpoint of service typeBindingTypeInfo.MessageTypeEnum.JAVA
. This method is not thread-safe.- Parameters:
fault
- throwable- Returns:
- current TransportException instance
- Since:
- 11.1.1.4
-
getJavaFault
Get the java fault metadata. See alsosetJavaFault(java.lang.Throwable)
This method is not thread safe.- Returns:
- Java fault's throwable, or null if no Java fault is set.
- Since:
- 11.1.1.4
-
setOpaqueData
Stores opaque (i.e. unspecified/unstructured) data from transport providers. A typical use case is when a TransportException is thrown on the request thread by an outbound transport endpoint of type XYZ, and this endpoint wants to pass along some provider-specific data that can be retrieved by the calling inbound endpoint, which also happens to be of type XYZ and knows how to interpret the data. Note: inbound transport must send the message to the transport manager with the transport optionsTransportOptions.Option.THROW_ON_ERROR
- Parameters:
data
- opaque data, a map of object keyed by string.- Returns:
- updated transport exception instance
- Since:
- 11.1.1.4
-
getOpaqueData
Get the opaque data. Se alsosetOpaqueData(java.util.Map<java.lang.String, java.lang.Object>)
. This method is not thread safe- Returns:
- opaque (i.e. unspecified/unstructured) data from transport providers, may be null if none is set.
- Since:
- 11.1.1.4
-