Class ConvertException

All Implemented Interfaces:
Serializable

public class ConvertException extends RuntimeException
An exception that is thrown to indicate a problem occurred during a conversion process. This class extends RuntimeException and is used to signify errors encountered while converting between types, typically within a dynamic type conversion framework or library.
See Also:
  • Constructor Details

    • ConvertException

      public ConvertException()
      Constructs a new ConvertException with null as its detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).
    • ConvertException

      public ConvertException(String message)
      Constructs a new ConvertException with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).
      Parameters:
      message - the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.