Class: Lutaml::Model::UnresolvableTypeError
- Defined in:
- lib/lutaml/model/error/unresolvable_type_error.rb
Overview
Error raised when an XSD type reference cannot be resolved
This error occurs during XSD generation when:
-
A custom xsd_type value is used but the type is not defined
-
A type reference cannot be found in the model hierarchy
-
A type is neither a W3C built-in nor a custom LutaML type
Instance Method Summary collapse
-
#initialize(message = "XSD type cannot be resolved") ⇒ UnresolvableTypeError
constructor
Initialize the error with a descriptive message.
Constructor Details
#initialize(message = "XSD type cannot be resolved") ⇒ UnresolvableTypeError
Initialize the error with a descriptive message
22 23 24 |
# File 'lib/lutaml/model/error/unresolvable_type_error.rb', line 22 def initialize( = "XSD type cannot be resolved") super end |