Package org.osgi.util.converter
Class ConversionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.osgi.util.converter.ConversionException
-
- All Implemented Interfaces:
java.io.Serializable
public class ConversionException extends java.lang.RuntimeException
This Runtime Exception is thrown when an object is requested to be converted but the conversion cannot be done. For example when the String "test" is to be converted into a Long.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConversionException(java.lang.String message)
Create a Conversion Exception with a message.ConversionException(java.lang.String message, java.lang.Throwable cause)
Create a Conversion Exception with a message and a nested cause.
-
-
-
Constructor Detail
-
ConversionException
public ConversionException(java.lang.String message)
Create a Conversion Exception with a message.- Parameters:
message
- The message for this exception.
-
ConversionException
public ConversionException(java.lang.String message, java.lang.Throwable cause)
Create a Conversion Exception with a message and a nested cause.- Parameters:
message
- The message for this exception.cause
- The causing exception.
-
-