Package com.caplin.net.udp
Class UDPSendException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.caplin.net.udp.UDPSendException
- All Implemented Interfaces:
Serializable
Wrapper exception for an exception that is thrown when attempting to send
a UDP message. The actual wrapped exception type may vary depending on implementation
of UDPAccessor, for example IOException, SecurityException etc.
- See Also:
-
Constructor Summary
ConstructorDescriptionUDPSendException
(Exception wrapped) Create a UDPSendException with a wrapped Exception -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UDPSendException
Create a UDPSendException with a wrapped Exception- Parameters:
wrapped
- the Exception to be wrapped in this UDPSendException.
-