annotate vamp-client/Exceptions.h @ 172:cfa115746cb3

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