mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
QError: Introduce QERR_IO_ERROR
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
This commit is contained in:
parent
25e48c849a
commit
5889887366
2 changed files with 7 additions and 0 deletions
4
qerror.c
4
qerror.c
|
@ -148,6 +148,10 @@ static const QErrorStringTable qerror_table[] = {
|
|||
.error_fmt = QERR_INVALID_PASSWORD,
|
||||
.desc = "Password incorrect",
|
||||
},
|
||||
{
|
||||
.error_fmt = QERR_IO_ERROR,
|
||||
.desc = "An IO error has occurred",
|
||||
},
|
||||
{
|
||||
.error_fmt = QERR_JSON_PARSING,
|
||||
.desc = "Invalid JSON syntax",
|
||||
|
|
3
qerror.h
3
qerror.h
|
@ -126,6 +126,9 @@ QError *qobject_to_qerror(const QObject *obj);
|
|||
#define QERR_INVALID_PASSWORD \
|
||||
"{ 'class': 'InvalidPassword', 'data': {} }"
|
||||
|
||||
#define QERR_IO_ERROR \
|
||||
"{ 'class': 'IOError', 'data': {} }"
|
||||
|
||||
#define QERR_JSON_PARSING \
|
||||
"{ 'class': 'JSONParsing', 'data': {} }"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue