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 file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
#ifndef INCLUDED_EXCEPTIONS_HPP
|
|
|
|
#define INCLUDED_EXCEPTIONS_HPP
|
|
|
|
|
|
|
|
#include <exception>
|
2016-10-29 20:15:00 -05:00
|
|
|
#include <stdexcept>
|
2016-04-16 11:56:23 -05:00
|
|
|
|
|
|
|
// Generic LOOL errors and base for others.
|
|
|
|
class LoolException : public std::runtime_error
|
|
|
|
{
|
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;
|
|
|
|
};
|
|
|
|
|
2016-09-30 08:09:53 -05:00
|
|
|
class StorageSpaceLowException : public LoolException
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using LoolException::LoolException;
|
|
|
|
};
|
|
|
|
|
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.
|
|
|
|
class BadRequestException : public LoolException
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using LoolException::LoolException;
|
|
|
|
};
|
|
|
|
|
2016-05-15 16:50:32 -05:00
|
|
|
/// A bad-argument exception that is meant to signify,
|
|
|
|
/// and translate into, an HTTP bad request.
|
|
|
|
class BadArgumentException : public BadRequestException
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using BadRequestException::BadRequestException;
|
|
|
|
};
|
|
|
|
|
2016-04-16 11:56:23 -05:00
|
|
|
/// An authorization exception that is means to signify,
|
|
|
|
/// and translate into, an HTTP unauthorized error.
|
|
|
|
class UnauthorizedRequestException : public LoolException
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using LoolException::LoolException;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|