cannam@170: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ cannam@170: /* cannam@170: Piper C++ cannam@170: cannam@170: An API for audio analysis and feature extraction plugins. cannam@170: cannam@170: Centre for Digital Music, Queen Mary, University of London. cannam@170: Copyright 2006-2016 Chris Cannam and QMUL. cannam@170: cannam@170: Permission is hereby granted, free of charge, to any person cannam@170: obtaining a copy of this software and associated documentation cannam@170: files (the "Software"), to deal in the Software without cannam@170: restriction, including without limitation the rights to use, copy, cannam@170: modify, merge, publish, distribute, sublicense, and/or sell copies cannam@170: of the Software, and to permit persons to whom the Software is cannam@170: furnished to do so, subject to the following conditions: cannam@170: cannam@170: The above copyright notice and this permission notice shall be cannam@170: included in all copies or substantial portions of the Software. cannam@170: cannam@170: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, cannam@170: EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF cannam@170: MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND cannam@170: NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR cannam@170: ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF cannam@170: CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION cannam@170: WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. cannam@170: cannam@170: Except as contained in this notice, the names of the Centre for cannam@170: Digital Music; Queen Mary, University of London; and Chris Cannam cannam@170: shall not be used in advertising or otherwise to promote the sale, cannam@170: use or other dealings in this Software without prior written cannam@170: authorization. cannam@170: */ cannam@170: cannam@170: #ifndef PIPER_CLIENT_EXCEPTIONS_H cannam@170: #define PIPER_CLIENT_EXCEPTIONS_H cannam@170: cannam@172: #include cannam@172: #include cannam@172: cannam@170: namespace piper_vamp { cannam@170: namespace client { cannam@170: cannam@170: class ServerCrashed : public std::runtime_error cannam@170: { cannam@170: public: cannam@170: ServerCrashed() : std::runtime_error("Piper server exited unexpectedly") {} cannam@170: }; cannam@170: cannam@170: class RequestTimedOut : public std::runtime_error cannam@170: { cannam@170: public: cannam@170: RequestTimedOut() : std::runtime_error("Piper request timed out") {} cannam@170: }; cannam@170: cannam@170: class ProtocolError : public std::runtime_error cannam@170: { cannam@170: public: cannam@170: ProtocolError() : std::runtime_error("Piper protocol error") {} cannam@170: ProtocolError(const char *msg) : std::runtime_error(msg) {} cannam@170: }; cannam@170: cannam@170: class ServiceError : public std::runtime_error cannam@170: { cannam@170: public: cannam@170: ServiceError(std::string msg) : std::runtime_error(msg) {} cannam@170: }; cannam@170: cannam@170: } cannam@170: } cannam@170: cannam@170: #endif