"""Generator errors.""" class ModelGeneratorError(Exception): """Base exception for model generator errors.""" pass class ConfigurationError(ModelGeneratorError): """Raised when configuration is invalid or missing.""" pass class GenerationError(ModelGeneratorError): """Raised when model generation fails.""" pass