Skip to content
Snippets Groups Projects
Commit ce039d6d authored by Maja Jabłońska's avatar Maja Jabłońska
Browse files

Add utils/exceptions.py

parent baf626c4
Branches
Tags
1 merge request!46Merge COMBO 3.0 into master
class InvalidTagSequence(Exception):
def __init__(self, tag_sequence=None):
super().__init__()
self.tag_sequence = tag_sequence
def __str__(self):
return " ".join(self.tag_sequence)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment