Class ObjectNotConvertibleException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.sap.cloud.sdk.typeconverter.exception.ObjectNotConvertibleException
All Implemented Interfaces:
Serializable

public class ObjectNotConvertibleException extends RuntimeException
Constructor used to indicate that the access to the contained value in a ConvertedObject failed, as the value could not be converted.
See Also:
  • Constructor Details

    • ObjectNotConvertibleException

      public ObjectNotConvertibleException(@Nullable String message)
      Creates the exception by delegating the exception message to the super class.
      Parameters:
      message - The message to create the exception with.
    • ObjectNotConvertibleException

      public ObjectNotConvertibleException(@Nullable Throwable cause)
      Creates the exception by delegating the exception cause to the super class.
      Parameters:
      cause - The exception that caused this ObjectNotConvertableException.
    • ObjectNotConvertibleException

      public ObjectNotConvertibleException(@Nullable String message, @Nullable Throwable cause)
      Creates the exception by delegating the exception message and cause to the super class.
      Parameters:
      message - The message to create the exception with.
      cause - The exception that caused this ObjectNotConvertableException.
    • ObjectNotConvertibleException

      public ObjectNotConvertibleException()