error: New QERR_PROPERTY_VALUE_IN_USE
This commit is contained in:
parent
06b4a703e0
commit
9c5eff958d
4
qerror.c
4
qerror.c
@ -112,6 +112,10 @@ static const QErrorStringTable qerror_table[] = {
|
||||
.error_fmt = QERR_PROPERTY_VALUE_BAD,
|
||||
.desc = "Property '%(device).%(property)' doesn't take value '%(value)'",
|
||||
},
|
||||
{
|
||||
.error_fmt = QERR_PROPERTY_VALUE_IN_USE,
|
||||
.desc = "Property '%(device).%(property)' can't take value '%(value)', it's in use",
|
||||
},
|
||||
{
|
||||
.error_fmt = QERR_QMP_BAD_INPUT_OBJECT,
|
||||
.desc = "Bad QMP input object",
|
||||
|
3
qerror.h
3
qerror.h
@ -96,6 +96,9 @@ QError *qobject_to_qerror(const QObject *obj);
|
||||
#define QERR_PROPERTY_VALUE_BAD \
|
||||
"{ 'class': 'PropertyValueBad', 'data': { 'device': %s, 'property': %s, 'value': %s } }"
|
||||
|
||||
#define QERR_PROPERTY_VALUE_IN_USE \
|
||||
"{ 'class': 'PropertyValueInUse', 'data': { 'device': %s, 'property': %s, 'value': %s } }"
|
||||
|
||||
#define QERR_QMP_BAD_INPUT_OBJECT \
|
||||
"{ 'class': 'QMPBadInputObject', 'data': { 'expected': %s } }"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user