Class SchemaGenerationException

All Implemented Interfaces:
Serializable

public class SchemaGenerationException extends IllegalStateException
Indicates an unrecoverable error occurred during schema generation.

This exception is thrown when the schema generator encounters a condition that prevents it from completing the schema generation process.

See Also:
  • Constructor Details

    • SchemaGenerationException

      public SchemaGenerationException()
      Constructs a new schema generation exception with no detail message.
    • SchemaGenerationException

      public SchemaGenerationException(String message, @NonNull Throwable cause)
      Constructs a new schema generation exception with the specified detail message and cause.
      Parameters:
      message - the detail message providing context about the failure
      cause - the underlying cause of the exception
    • SchemaGenerationException

      public SchemaGenerationException(String message)
      Constructs a new schema generation exception with the specified detail message.
      Parameters:
      message - the detail message providing context about the failure
    • SchemaGenerationException

      public SchemaGenerationException(@NonNull Throwable cause)
      Constructs a new schema generation exception with the specified cause.
      Parameters:
      cause - the underlying cause of the exception