anonstream/anonstream/control/spec/__init__.py

22 行
398 B
Python
Raw 通常表示 履歴

2022-06-16 10:23:11 +09:00
# SPDX-FileCopyrightText: 2022 n9k <https://git.076.ne.jp/ninya9k>
# SPDX-License-Identifier: AGPL-3.0-or-later
2022-06-16 10:05:18 +09:00
class ParseException(Exception):
pass
2022-06-16 10:05:18 +09:00
class NoParse(ParseException):
pass
class Ambiguous(ParseException):
pass
class BadArgument(ParseException):
pass
class Parsed(Exception):
pass
class Spec:
def consume(self, words, index):
raise NotImplemented