From 588988736634ad2aa356dafac78f88d1ea68b1a4 Mon Sep 17 00:00:00 2001 From: Luiz Capitulino Date: Tue, 22 Nov 2011 16:29:52 -0200 Subject: [PATCH] QError: Introduce QERR_IO_ERROR Signed-off-by: Luiz Capitulino --- qerror.c | 4 ++++ qerror.h | 3 +++ 2 files changed, 7 insertions(+) diff --git a/qerror.c b/qerror.c index 656efc2cf0..b544cedd56 100644 --- a/qerror.c +++ b/qerror.c @@ -149,6 +149,10 @@ static const QErrorStringTable qerror_table[] = { .desc = "Password incorrect", }, { + .error_fmt = QERR_IO_ERROR, + .desc = "An IO error has occurred", + }, + { .error_fmt = QERR_JSON_PARSING, .desc = "Invalid JSON syntax", }, diff --git a/qerror.h b/qerror.h index 161d654b75..1fee39d5c9 100644 --- a/qerror.h +++ b/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': {} }" -- 2.11.0