Class ODataGeneratorException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.sap.cloud.sdk.datamodel.odata.generator.ODataGeneratorException
All Implemented Interfaces:
Serializable

public class ODataGeneratorException extends RuntimeException
Custom runtime exception that is thrown in cases of unrecoverable errors.
See Also:
  • Constructor Details

    • ODataGeneratorException

      public ODataGeneratorException(@Nullable String message)
      Creates an exception based on the given message.
      Parameters:
      message - The error message,
    • ODataGeneratorException

      public ODataGeneratorException(@Nullable Throwable cause)
      Creates an exception based on the actual thrown exception.
      Parameters:
      cause - The causing exception.
    • ODataGeneratorException

      public ODataGeneratorException(@Nullable String message, @Nullable Throwable cause)
      Creates an exception based on a more specific message and the actual thrown exception.
      Parameters:
      message - The more specific message.
      cause - The causing exception.