xlnt - community edition
exceptions.hpp
1 // Copyright (c) 2014-2022 Thomas Fussell
2 // Copyright (c) 2010-2015 openpyxl
3 // Copyright (c) 2024-2025 xlnt-community
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a copy
6 // of this software and associated documentation files (the "Software"), to deal
7 // in the Software without restriction, including without limitation the rights
8 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 // copies of the Software, and to permit persons to whom the Software is
10 // furnished to do so, subject to the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 // THE SOFTWARE
22 //
23 // @license: http://www.opensource.org/licenses/mit-license.php
24 // @author: see AUTHORS file
25 
26 #pragma once
27 
28 #include <stdexcept>
29 
30 #include <xlnt/xlnt_config.hpp>
31 #include <xlnt/cell/index_types.hpp>
32 
33 namespace xlnt {
34 
38 class XLNT_API exception : public std::runtime_error
39 {
40 public:
45  explicit exception(const std::string &message);
46 
50  exception(const exception &) = default;
51 
55  ~exception() override;
56 
61  void message(const std::string &message);
62 
66  const std::string & message();
67 
68 private:
72  std::string message_;
73 };
74 
78 class XLNT_API invalid_parameter : public exception
79 {
80 public:
84  explicit invalid_parameter(const char *optional_message = nullptr);
85 
89  invalid_parameter(const invalid_parameter &) = default;
90 
94  ~invalid_parameter() override;
95 };
96 
100 class XLNT_API invalid_sheet_title : public exception
101 {
102 public:
106  explicit invalid_sheet_title(const std::string &title);
107 
111  invalid_sheet_title(const invalid_sheet_title &) = default;
112 
116  ~invalid_sheet_title() override;
117 };
118 
122 class XLNT_API invalid_file : public exception
123 {
124 public:
129  explicit invalid_file(const std::string &filename);
130 
134  invalid_file(const invalid_file &) = default;
135 
139  ~invalid_file() override;
140 };
141 
146 class XLNT_API illegal_character : public exception
147 {
148 public:
152  explicit illegal_character(char c);
153 
157  illegal_character(const illegal_character &) = default;
158 
162  ~illegal_character() override;
163 };
164 
168 class XLNT_API invalid_data_type : public exception
169 {
170 public:
175 
179  invalid_data_type(const invalid_data_type &) = default;
180 
184  ~invalid_data_type() override;
185 };
186 
190 class XLNT_API invalid_column_index : public exception
191 {
192 public:
197 
201  invalid_column_index(const invalid_column_index &) = default;
202 
206  ~invalid_column_index() override;
207 };
208 
212 class XLNT_API invalid_cell_reference : public exception
213 {
214 public:
219 
223  explicit invalid_cell_reference(const std::string &reference_string);
224 
229 
233  ~invalid_cell_reference() override;
234 };
235 
239 class XLNT_API invalid_attribute : public exception
240 {
241 public:
245  explicit invalid_attribute(const char *optional_message = nullptr);
246 
250  invalid_attribute(const invalid_attribute &) = default;
251 
255  ~invalid_attribute() override;
256 };
257 
261 class XLNT_API key_not_found : public exception
262 {
263 public:
267  key_not_found();
268 
272  key_not_found(const key_not_found &) = default;
273 
277  ~key_not_found() override;
278 };
279 
283 class XLNT_API no_visible_worksheets : public exception
284 {
285 public:
290 
294  no_visible_worksheets(const no_visible_worksheets &) = default;
295 
299  ~no_visible_worksheets() override;
300 };
301 
305 class XLNT_API unhandled_switch_case : public exception
306 {
307 public:
312 
316  unhandled_switch_case(const unhandled_switch_case &) = default;
317 
321  ~unhandled_switch_case() override;
322 };
323 
327 class XLNT_API unsupported : public exception
328 {
329 public:
334  explicit unsupported(const std::string &message);
335 
339  unsupported(const unsupported &) = default;
340 
344  ~unsupported() override;
345 };
346 
347 } // namespace xlnt
Exception for any data type inconsistencies.
Definition: exceptions.hpp:168
Exception for a workbook with no visible worksheets
Definition: exceptions.hpp:283
Exception for attempting to use a feature which is not supported
Definition: exceptions.hpp:327
std::uint32_t row_t
All rows should be referred to by an instance of this type.
Definition: index_types.hpp:40
The data submitted which cannot be used directly in Excel files. It must be removed or escaped...
Definition: exceptions.hpp:146
Enumerates the possible types a cell can be determined by it&#39;s current value.
Definition: cell.hpp:36
Exception for a bad parameter value
Definition: exceptions.hpp:78
Exception when setting a class&#39;s attribute to an invalid value
Definition: exceptions.hpp:239
Exception for bad sheet names.
Definition: exceptions.hpp:100
Exception for a key that doesn&#39;t exist in a container
Definition: exceptions.hpp:261
Exception for bad column indices in A1-style cell references.
Definition: exceptions.hpp:190
Parent type of all custom exceptions thrown in this library.
Definition: exceptions.hpp:38
Exception for trying to open a non-XLSX file.
Definition: exceptions.hpp:122
Columns can be referred to as a string A,B,...Z,AA,AB,..,ZZ,AAA,...,ZZZ or as a 1-indexed index...
Definition: index_types.hpp:47
Debug exception for a switch that fell through to the default case
Definition: exceptions.hpp:305
Exception for converting between numeric and A1-style cell references.
Definition: exceptions.hpp:212