java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalStateException
dev.metaschema.schemagen.SchemaGenerationException
- All Implemented Interfaces:
Serializable
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 Summary
ConstructorsConstructorDescriptionConstructs a new schema generation exception with no detail message.SchemaGenerationException(String message) Constructs a new schema generation exception with the specified detail message.SchemaGenerationException(String message, Throwable cause) Constructs a new schema generation exception with the specified detail message and cause.Constructs a new schema generation exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SchemaGenerationException
public SchemaGenerationException()Constructs a new schema generation exception with no detail message. -
SchemaGenerationException
Constructs a new schema generation exception with the specified detail message and cause.- Parameters:
message- the detail message providing context about the failurecause- the underlying cause of the exception
-
SchemaGenerationException
Constructs a new schema generation exception with the specified detail message.- Parameters:
message- the detail message providing context about the failure
-
SchemaGenerationException
Constructs a new schema generation exception with the specified cause.- Parameters:
cause- the underlying cause of the exception
-