Package net.minidev.asm.ex
Class ConvertException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.minidev.asm.ex.ConvertException
-
- All Implemented Interfaces:
java.io.Serializable
public class ConvertException extends java.lang.RuntimeExceptionAn exception that is thrown to indicate a problem occurred during a conversion process. This class extendsRuntimeExceptionand is used to signify errors encountered while converting between types, typically within a dynamic type conversion framework or library.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description ConvertException()Constructs a newConvertExceptionwithnullas its detail message.ConvertException(java.lang.String message)Constructs a newConvertExceptionwith the specified detail message.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ConvertException
public ConvertException()
Constructs a newConvertExceptionwithnullas its detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable).
-
ConvertException
public ConvertException(java.lang.String message)
Constructs a newConvertExceptionwith the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable).- Parameters:
message- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.
-
-