Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions kaitaistruct.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,3 +464,12 @@ class ValidationNotAnyOfError(ValidationFailedError):
def __init__(self, actual, io, src_path):
super(ValidationNotAnyOfError, self).__init__("not any of the list, got %s" % (repr(actual)), io, src_path)
self.actual = actual

class ValidationRegexMatchError(ValidationFailedError):
"""Signals validation failure: we required "actual" value to match
the regex, but it turned out that it's not.
"""
def __init__(self, regex, actual, io, src_path):
super(ValidationRegexMatchError, self).__init__("no match with regex %s, got %s" % (repr(regex), repr(actual)), io, src_path)
self.actual = actual
self.regex = regex