From e443e0fb4a701f5fbafb484ef76388bae7a0d433 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20He=C4=8Dko?= Date: Tue, 29 Oct 2024 21:14:21 +0100 Subject: [PATCH] config(errors): add better description to SchemaError --- leapp/actors/config.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/leapp/actors/config.py b/leapp/actors/config.py index 7bfade152..f0665db68 100644 --- a/leapp/actors/config.py +++ b/leapp/actors/config.py @@ -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):