2016-04-16 11:56:23 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
|
|
/*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Exception classes to differentiate between the
|
|
|
|
// different error situations and handling.
|
2020-04-18 03:39:50 -05:00
|
|
|
|
|
|
|
#pragma once
|
2016-04-16 11:56:23 -05:00
|
|
|
|
2022-02-02 13:07:19 -06:00
|
|
|
#include <atomic>
|
2016-04-16 11:56:23 -05:00
|
|
|
#include <exception>
|
2016-10-29 20:15:00 -05:00
|
|
|
#include <stdexcept>
|
2022-02-02 13:07:19 -06:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
// not beautiful
|
|
|
|
#define EXCEPTION_DECL(type,parent_cl) \
|
|
|
|
class type : public parent_cl \
|
|
|
|
{ \
|
|
|
|
public: \
|
|
|
|
static std::atomic<size_t> count; \
|
|
|
|
type(const std::string &str) : parent_cl(str) \
|
|
|
|
{ type::count++; } \
|
|
|
|
};
|
2016-04-16 11:56:23 -05:00
|
|
|
|
2021-11-15 10:00:44 -06:00
|
|
|
// Generic COOL errors and base for others.
|
2021-11-18 06:08:14 -06:00
|
|
|
class CoolException : public std::runtime_error
|
2016-04-16 11:56:23 -05:00
|
|
|
{
|
2016-10-18 00:32:18 -05:00
|
|
|
public:
|
|
|
|
std::string toString() const
|
|
|
|
{
|
|
|
|
return what();
|
|
|
|
}
|
2016-04-16 11:56:23 -05:00
|
|
|
protected:
|
|
|
|
using std::runtime_error::runtime_error;
|
|
|
|
};
|
|
|
|
|
2022-02-02 13:07:19 -06:00
|
|
|
EXCEPTION_DECL(StorageSpaceLowException,CoolException)
|
2016-09-30 08:09:53 -05:00
|
|
|
|
2017-05-18 13:05:45 -05:00
|
|
|
/// General exception thrown when we are not able to
|
|
|
|
/// connect to storage.
|
2022-02-02 13:07:19 -06:00
|
|
|
EXCEPTION_DECL(StorageConnectionException,CoolException)
|
2017-05-18 13:05:45 -05:00
|
|
|
|
2016-05-15 16:50:32 -05:00
|
|
|
/// A bad-request exception that is meant to signify,
|
2016-04-16 11:56:23 -05:00
|
|
|
/// and translate into, an HTTP bad request.
|
2022-02-02 13:07:19 -06:00
|
|
|
EXCEPTION_DECL(BadRequestException,CoolException)
|
2016-04-16 11:56:23 -05:00
|
|
|
|
2016-05-15 16:50:32 -05:00
|
|
|
/// A bad-argument exception that is meant to signify,
|
|
|
|
/// and translate into, an HTTP bad request.
|
2022-02-02 13:07:19 -06:00
|
|
|
EXCEPTION_DECL(BadArgumentException,BadRequestException)
|
2016-05-15 16:50:32 -05:00
|
|
|
|
2017-05-14 21:59:58 -05:00
|
|
|
/// An authorization exception that is meant to signify,
|
2016-04-16 11:56:23 -05:00
|
|
|
/// and translate into, an HTTP unauthorized error.
|
2022-02-02 13:07:19 -06:00
|
|
|
EXCEPTION_DECL(UnauthorizedRequestException,CoolException)
|
2016-04-16 11:56:23 -05:00
|
|
|
|
2017-05-14 21:58:02 -05:00
|
|
|
/// A service-unavailable exception that is meant to signify
|
|
|
|
/// an internal error.
|
2022-02-02 13:07:19 -06:00
|
|
|
EXCEPTION_DECL(ServiceUnavailableException,CoolException)
|
2019-06-22 05:26:42 -05:00
|
|
|
|
|
|
|
/// Badly formed data we are parsing
|
2022-02-02 13:07:19 -06:00
|
|
|
EXCEPTION_DECL(ParseError,CoolException)
|
2019-06-22 05:26:42 -05:00
|
|
|
|
2016-04-16 11:56:23 -05:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|