comparison vamp-client/Exceptions.h @ 170:590b1a1fd955

More work on error and exception handling
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 31 Jan 2017 14:53:24 +0000
parents
children cfa115746cb3
comparison
equal deleted inserted replaced
169:f13dc1db2229 170:590b1a1fd955
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
2 /*
3 Piper C++
4
5 An API for audio analysis and feature extraction plugins.
6
7 Centre for Digital Music, Queen Mary, University of London.
8 Copyright 2006-2016 Chris Cannam and QMUL.
9
10 Permission is hereby granted, free of charge, to any person
11 obtaining a copy of this software and associated documentation
12 files (the "Software"), to deal in the Software without
13 restriction, including without limitation the rights to use, copy,
14 modify, merge, publish, distribute, sublicense, and/or sell copies
15 of the Software, and to permit persons to whom the Software is
16 furnished to do so, subject to the following conditions:
17
18 The above copyright notice and this permission notice shall be
19 included in all copies or substantial portions of the Software.
20
21 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
25 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
26 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28
29 Except as contained in this notice, the names of the Centre for
30 Digital Music; Queen Mary, University of London; and Chris Cannam
31 shall not be used in advertising or otherwise to promote the sale,
32 use or other dealings in this Software without prior written
33 authorization.
34 */
35
36 #ifndef PIPER_CLIENT_EXCEPTIONS_H
37 #define PIPER_CLIENT_EXCEPTIONS_H
38
39 namespace piper_vamp {
40 namespace client {
41
42 class ServerCrashed : public std::runtime_error
43 {
44 public:
45 ServerCrashed() : std::runtime_error("Piper server exited unexpectedly") {}
46 };
47
48 class RequestTimedOut : public std::runtime_error
49 {
50 public:
51 RequestTimedOut() : std::runtime_error("Piper request timed out") {}
52 };
53
54 class ProtocolError : public std::runtime_error
55 {
56 public:
57 ProtocolError() : std::runtime_error("Piper protocol error") {}
58 ProtocolError(const char *msg) : std::runtime_error(msg) {}
59 };
60
61 class ServiceError : public std::runtime_error
62 {
63 public:
64 ServiceError(std::string msg) : std::runtime_error(msg) {}
65 };
66
67 }
68 }
69
70 #endif