Skip to content

Commit

Permalink
config(errors): add better description to SchemaError
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalHe authored Oct 29, 2024
1 parent e2f13b4 commit e443e0f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion leapp/actors/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@


class SchemaError(Exception):
"""Raised when a schema fails validation."""
"""
Raised when actors use conflicting schemas.
For example, one schema wants `section.field` to be an integer and other schema wants `section.field` to be a string.
"""


class ValidationError(Exception):
Expand Down

0 comments on commit e443e0f

Please sign in to comment.