Signed-off-by: Luiz Capitulino <lcapitul...@redhat.com> --- qapi-schema.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+)
diff --git a/qapi-schema.json b/qapi-schema.json index 1b2d7f5..6be937b 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3,6 +3,32 @@ # QAPI Schema ## +# @ErrorClass +# +# QEMU error classes +# +# @GenericError: this is used for errors that don't require a specific error +# class. This should be the default case for most errors +# +# @CommandNotFound: the requested command has not been found +# +# @DeviceNotActive: a device has failed to be become active +# +# @DeviceNotFound: the requested device has not been found +# +# @KVMMissingCap: the requested operation can't be fulfilled because a +# required KVM capability is missing +# +# @MigrationExpected: the requested operation can't be fulfilled because a +# migration process is expected +# +# Since: 1.2 +## +{ 'enum': 'ErrorClass', + 'data': [ 'GenericError', 'CommandNotFound', 'DeviceNotActive', + 'KVMMissingCap', 'DeviceNotFound', 'MigrationExpected' ] } + +## # @NameInfo: # # Guest name information. -- 1.7.11.2.249.g31c7954.dirty