Skip to content

Commit

Permalink
Export ValidationAbortedError (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
trim21 authored Sep 22, 2024
1 parent 841c3d2 commit 4e83d42
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/graphql/validation/validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@
if TYPE_CHECKING:
from .rules import ASTValidationRule

__all__ = ["assert_valid_sdl", "assert_valid_sdl_extension", "validate", "validate_sdl"]
__all__ = [
"assert_valid_sdl",
"assert_valid_sdl_extension",
"validate",
"validate_sdl",
"ValidationAbortedError",
]


class ValidationAbortedError(GraphQLError):
Expand Down

0 comments on commit 4e83d42

Please sign in to comment.