2 * Copyright (C) 2005-2022 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
13 namespace RecognitionError
15 static constexpr int UNKNOWN
= 1;
16 static constexpr int NETWORK_TIMEOUT
= 2;
17 static constexpr int NETWORK
= 3;
18 static constexpr int AUDIO
= 4;
19 static constexpr int SERVER
= 5;
20 static constexpr int CLIENT
= 6;
21 static constexpr int SPEECH_TIMEOUT
= 7;
22 static constexpr int NO_MATCH
= 8;
23 static constexpr int RECOGNIZER_BUSY
= 9;
24 static constexpr int INSUFFICIENT_PERMISSIONS
= 10;
25 static constexpr int SERVICE_NOT_AVAILABLE
= 11;
27 } // namespace RecognitionError