diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2009-11-18 23:05:30 -0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-03 09:41:20 -0600 |
commit | 9f9daf9a636c0e6ea435c93bfbccaf05e581eed9 (patch) | |
tree | 2e8c0b5b0453f487cd3c0eab5cf48222284a1bc9 /qobject.h | |
parent | 64084a03c375802150c5d1d0d6e72606f23553a7 (diff) | |
download | qemu-9f9daf9a636c0e6ea435c93bfbccaf05e581eed9.zip qemu-9f9daf9a636c0e6ea435c93bfbccaf05e581eed9.tar.gz qemu-9f9daf9a636c0e6ea435c93bfbccaf05e581eed9.tar.bz2 |
Introduce QError
QError is a high-level data type which represents an exception
in QEMU, it stores the following error information:
- class Error class name (eg. "ServiceUnavailable")
- description A detailed error description, which can contain
references to run-time error data
- filename The file name of where the error occurred
- line number The exact line number of the error
- function The function name of where the error occurred
- run-time data Any run-time error data
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qobject.h')
-rw-r--r-- | qobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -43,6 +43,7 @@ typedef enum { QTYPE_QLIST, QTYPE_QFLOAT, QTYPE_QBOOL, + QTYPE_QERROR, } qtype_code; struct QObject; |