Class UDPSendException

  • All Implemented Interfaces:
    java.io.Serializable

    public class UDPSendException
    extends java.lang.Exception
    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:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      UDPSendException​(java.lang.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
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • UDPSendException

        public UDPSendException​(java.lang.Exception wrapped)
        Create a UDPSendException with a wrapped Exception
        Parameters:
        wrapped - the Exception to be wrapped in this UDPSendException.