nlist: make selected list accessible globally
[waspsaliva.git] / src / exceptions.h
blobc54307653b87b3575a09878ce59893d26ab4a544
1 /*
2 Minetest
3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #pragma once
22 #include <exception>
23 #include <string>
26 class BaseException : public std::exception
28 public:
29 BaseException(const std::string &s) throw(): m_s(s) {}
30 ~BaseException() throw() = default;
32 virtual const char * what() const throw()
34 return m_s.c_str();
36 protected:
37 std::string m_s;
40 class AlreadyExistsException : public BaseException {
41 public:
42 AlreadyExistsException(const std::string &s): BaseException(s) {}
45 class VersionMismatchException : public BaseException {
46 public:
47 VersionMismatchException(const std::string &s): BaseException(s) {}
50 class FileNotGoodException : public BaseException {
51 public:
52 FileNotGoodException(const std::string &s): BaseException(s) {}
55 class DatabaseException : public BaseException {
56 public:
57 DatabaseException(const std::string &s): BaseException(s) {}
60 class SerializationError : public BaseException {
61 public:
62 SerializationError(const std::string &s): BaseException(s) {}
65 class PacketError : public BaseException {
66 public:
67 PacketError(const std::string &s): BaseException(s) {}
70 class SettingNotFoundException : public BaseException {
71 public:
72 SettingNotFoundException(const std::string &s): BaseException(s) {}
75 class InvalidFilenameException : public BaseException {
76 public:
77 InvalidFilenameException(const std::string &s): BaseException(s) {}
80 class ItemNotFoundException : public BaseException {
81 public:
82 ItemNotFoundException(const std::string &s): BaseException(s) {}
85 class ServerError : public BaseException {
86 public:
87 ServerError(const std::string &s): BaseException(s) {}
90 class ClientStateError : public BaseException {
91 public:
92 ClientStateError(const std::string &s): BaseException(s) {}
95 class PrngException : public BaseException {
96 public:
97 PrngException(const std::string &s): BaseException(s) {}
100 class ModError : public BaseException {
101 public:
102 ModError(const std::string &s): BaseException(s) {}
107 Some "old-style" interrupts:
110 class InvalidNoiseParamsException : public BaseException {
111 public:
112 InvalidNoiseParamsException():
113 BaseException("One or more noise parameters were invalid or require "
114 "too much memory")
117 InvalidNoiseParamsException(const std::string &s):
118 BaseException(s)
122 class InvalidPositionException : public BaseException
124 public:
125 InvalidPositionException():
126 BaseException("Somebody tried to get/set something in a nonexistent position.")
128 InvalidPositionException(const std::string &s):
129 BaseException(s)