mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 08:48:13 +00:00
30 lines
859 B
Python
30 lines
859 B
Python
# -*- Mode: Python -*-
|
|
#
|
|
# QAPI common definitions
|
|
|
|
##
|
|
# @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
|
|
#
|
|
# @DeviceEncrypted: the requested operation can't be fulfilled because the
|
|
# selected device is encrypted
|
|
#
|
|
# @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
|
|
#
|
|
# Since: 1.2
|
|
##
|
|
{ 'enum': 'ErrorClass',
|
|
'data': [ 'GenericError', 'CommandNotFound', 'DeviceEncrypted',
|
|
'DeviceNotActive', 'DeviceNotFound', 'KVMMissingCap' ] }
|
|
|