Class PCEPDeserializerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opendaylight.protocol.pcep.spi.PCEPDeserializerException
- All Implemented Interfaces:
Serializable
Used when something occurs during parsing bytes to java objects.
- See Also:
-
Constructor Summary
ConstructorDescriptionUsed when no exact error (from an RFC or from a draft) is specified.PCEPDeserializerException
(String err, Throwable cause) Used when we want to pass also the exception that occurred. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PCEPDeserializerException
Used when no exact error (from an RFC or from a draft) is specified.- Parameters:
err
- error message describing the error that occurred
-
PCEPDeserializerException
Used when we want to pass also the exception that occurred.- Parameters:
err
- error message describing the error that occurredcause
- specific exception that occurred
-