Class DOMRpcException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.opendaylight.mdsal.dom.api.DOMRpcException
-
- org.opendaylight.controller.md.sal.dom.api.DOMRpcException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DefaultDOMRpcException
,DOMRpcImplementationNotAvailableException
@Deprecated(forRemoval=true) public abstract class DOMRpcException extends DOMRpcException
Deprecated, for removal: This API element is subject to removal in a future version.UseDOMRpcException
instead.Base class for failures that can occur during RPC invocation. This covers transport and protocol-level failures.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
DOMRpcException(String message)
Deprecated, for removal: This API element is subject to removal in a future version.Construct an new instance with a message and an empty cause.protected
DOMRpcException(String message, Throwable cause)
Deprecated, for removal: This API element is subject to removal in a future version.Construct an new instance with a message and a cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DOMRpcException
protected DOMRpcException(String message)
Deprecated, for removal: This API element is subject to removal in a future version.Construct an new instance with a message and an empty cause.- Parameters:
message
- Exception message
-
-