Files
xemu/scripts/qapi/error.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.3 KiB
Python
Raw Normal View History

2019-10-18 09:43:44 +02:00
# Copyright (c) 2017-2019 Red Hat Inc.
#
# Authors:
# Markus Armbruster <armbru@redhat.com>
# Marc-André Lureau <marcandre.lureau@redhat.com>
#
# This work is licensed under the terms of the GNU GPL, version 2.
# See the COPYING file in the top-level directory.
"""
QAPI error classes
Common error classes used throughout the package. Additional errors may
be defined in other modules. At present, `QAPIParseError` is defined in
parser.py.
"""
2021-04-21 15:22:32 -04:00
from typing import Optional
from .source import QAPISourceInfo
2019-10-18 09:43:44 +02:00
class QAPIError(Exception):
"""Base class for all exceptions from the QAPI package."""
class QAPISourceError(QAPIError):
"""Error class for all exceptions identifying a source location."""
2021-04-21 15:22:32 -04:00
def __init__(self,
info: Optional[QAPISourceInfo],
msg: str,
col: Optional[int] = None):
2021-04-21 15:22:27 -04:00
super().__init__()
2019-10-18 09:43:44 +02:00
self.info = info
self.msg = msg
self.col = col
2019-10-18 09:43:44 +02:00
2021-04-21 15:22:32 -04:00
def __str__(self) -> str:
assert self.info is not None
2019-10-18 09:43:44 +02:00
loc = str(self.info)
if self.col is not None:
assert self.info.line is not None
loc += ':%s' % self.col
return loc + ': ' + self.msg
class QAPISemError(QAPISourceError):
"""Error class for semantic QAPI errors."""