Class ConversionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.labs64.netlicensing.exception.NetLicensingException
com.labs64.netlicensing.exception.ConversionException
- All Implemented Interfaces:
Serializable
This exception class should be used when there's a problem during the conversion from one representation of object to
another (for example, during the transformation of an XML item to an entity).
- See Also:
-
Constructor Summary
ConstructorDescriptionConstruct aConversionException
with the specified detail message.ConversionException
(String msg, Throwable cause) Construct aConversionException
with the specified detail message and cause exception. -
Method Summary
Methods inherited from class com.labs64.netlicensing.exception.NetLicensingException
contains, getMessage, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConversionException
Construct aConversionException
with the specified detail message.- Parameters:
msg
- the detail message
-
ConversionException
Construct aConversionException
with the specified detail message and cause exception.- Parameters:
msg
- the detail messagecause
- the cause exception
-