]> git.lizzy.rs Git - dragonfireclient.git/blob - src/exceptions.h
Add MapSettingsManager and new mapgen setting script API functions
[dragonfireclient.git] / src / exceptions.h
1 /*
2 Minetest
3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4
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.
9
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.
14
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.
18 */
19
20 #ifndef EXCEPTIONS_HEADER
21 #define EXCEPTIONS_HEADER
22
23 #include <exception>
24 #include <string>
25
26
27 class BaseException : public std::exception
28 {
29 public:
30         BaseException(const std::string &s) throw()
31         {
32                 m_s = s;
33         }
34         ~BaseException() throw() {}
35         virtual const char * what() const throw()
36         {
37                 return m_s.c_str();
38         }
39 protected:
40         std::string m_s;
41 };
42
43 class AsyncQueuedException : public BaseException {
44 public:
45         AsyncQueuedException(const std::string &s): BaseException(s) {}
46 };
47
48 class NotImplementedException : public BaseException {
49 public:
50         NotImplementedException(const std::string &s): BaseException(s) {}
51 };
52
53 class AlreadyExistsException : public BaseException {
54 public:
55         AlreadyExistsException(const std::string &s): BaseException(s) {}
56 };
57
58 class VersionMismatchException : public BaseException {
59 public:
60         VersionMismatchException(const std::string &s): BaseException(s) {}
61 };
62
63 class FileNotGoodException : public BaseException {
64 public:
65         FileNotGoodException(const std::string &s): BaseException(s) {}
66 };
67
68 class DatabaseException : public BaseException {
69 public:
70         DatabaseException(const std::string &s): BaseException(s) {}
71 };
72
73 class SerializationError : public BaseException {
74 public:
75         SerializationError(const std::string &s): BaseException(s) {}
76 };
77
78 class PacketError : public BaseException {
79 public:
80         PacketError(const std::string &s): BaseException(s) {}
81 };
82
83 class LoadError : public BaseException {
84 public:
85         LoadError(const std::string &s): BaseException(s) {}
86 };
87
88 class ContainerFullException : public BaseException {
89 public:
90         ContainerFullException(const std::string &s): BaseException(s) {}
91 };
92
93 class SettingNotFoundException : public BaseException {
94 public:
95         SettingNotFoundException(const std::string &s): BaseException(s) {}
96 };
97
98 class InvalidFilenameException : public BaseException {
99 public:
100         InvalidFilenameException(const std::string &s): BaseException(s) {}
101 };
102
103 class ProcessingLimitException : public BaseException {
104 public:
105         ProcessingLimitException(const std::string &s): BaseException(s) {}
106 };
107
108 class CommandLineError : public BaseException {
109 public:
110         CommandLineError(const std::string &s): BaseException(s) {}
111 };
112
113 class ItemNotFoundException : public BaseException {
114 public:
115         ItemNotFoundException(const std::string &s): BaseException(s) {}
116 };
117
118 class ServerError : public BaseException {
119 public:
120         ServerError(const std::string &s): BaseException(s) {}
121 };
122
123 class ClientStateError : public BaseException {
124 public:
125         ClientStateError(std::string s): BaseException(s) {}
126 };
127
128 class PrngException : public BaseException {
129 public:
130         PrngException(std::string s): BaseException(s) {}
131 };
132
133 class ModError : public BaseException {
134 public:
135         ModError(const std::string &s): BaseException(s) {}
136 };
137
138
139 /*
140         Some "old-style" interrupts:
141 */
142
143 class InvalidNoiseParamsException : public BaseException {
144 public:
145         InvalidNoiseParamsException():
146                 BaseException("One or more noise parameters were invalid or require "
147                         "too much memory")
148         {}
149
150         InvalidNoiseParamsException(const std::string &s):
151                 BaseException(s)
152         {}
153 };
154
155 class InvalidPositionException : public BaseException
156 {
157 public:
158         InvalidPositionException():
159                 BaseException("Somebody tried to get/set something in a nonexistent position.")
160         {}
161         InvalidPositionException(const std::string &s):
162                 BaseException(s)
163         {}
164 };
165
166 class TargetInexistentException : public std::exception
167 {
168         virtual const char * what() const throw()
169         {
170                 return "Somebody tried to refer to something that doesn't exist.";
171         }
172 };
173
174 class NullPointerException : public std::exception
175 {
176         virtual const char * what() const throw()
177         {
178                 return "NullPointerException";
179         }
180 };
181
182 #endif
183