Merge tag 'pull-request-2024-07-02' of https://gitlab.com/thuth/qemu into staging
[qemu/armbru.git] / include / qapi / qmp / qerror.h
blob38e89762b3aa6e925cb5db12f1d6657b7ba8f49e
1 /*
2 * QError Module
4 * Copyright (C) 2009 Red Hat Inc.
6 * Authors:
7 * Luiz Capitulino <lcapitulino@redhat.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
12 #ifndef QERROR_H
13 #define QERROR_H
16 * These macros will go away, please don't use in new code, and do not
17 * add new ones!
20 #define QERR_INVALID_PARAMETER_VALUE \
21 "Parameter '%s' expects %s"
23 #define QERR_MISSING_PARAMETER \
24 "Parameter '%s' is missing"
26 #define QERR_PROPERTY_VALUE_OUT_OF_RANGE \
27 "Property %s.%s doesn't take value %" PRId64 " (minimum: %" PRId64 ", maximum: %" PRId64 ")"
29 #define QERR_UNSUPPORTED \
30 "this feature or command is not currently supported"
32 #endif /* QERROR_H */