12 # @GenericError: this is used for errors that don't require a specific error
13 # class. This should be the default case for most errors
15 # @CommandNotFound: the requested command has not been found
17 # @DeviceNotActive: a device has failed to be become active
19 # @DeviceNotFound: the requested device has not been found
21 # @KVMMissingCap: the requested operation can't be fulfilled because a
22 # required KVM capability is missing
26 { 'enum': 'QapiErrorClass',
27 # Keep this in sync with ErrorClass in error.h
28 'data': [ 'GenericError', 'CommandNotFound',
29 'DeviceNotActive', 'DeviceNotFound', 'KVMMissingCap' ] }