Console Library 4.7.0
A header-only library that makes C++ simple
Loading...
Searching...
No Matches
csexc.h
Go to the documentation of this file.
1
9
10/*
11Copyright (c) 2026 MrXie1109
12
13Permission is hereby granted, free of charge, to any person obtaining a copy
14of this software and associated documentation files (the "Software"), to deal
15in the Software without restriction, including without limitation the rights
16to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17copies of the Software, and to permit persons to whom the Software is
18furnished to do so, subject to the following conditions:
19
20The above copyright notice and this permission notice shall be included in all
21copies or substantial portions of the Software.
22
23THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29SOFTWARE.
30*/
31
32#pragma once
33#include <stdexcept>
34#include <string>
35
36namespace console
37{
43 class console_error : public std::runtime_error
44 {
45 public:
50 console_error(const std::string &msg)
51 : std::runtime_error(msg) {}
52 };
53
59 {
60 public:
65 fatal_logging(const std::string &msg)
66 : console_error(msg) {}
67 };
68
74 {
75 public:
80 bad_format(const std::string &msg)
81 : console_error(msg) {}
82 };
83
89 {
90 public:
95 file_error(const std::string &msg)
96 : console_error(msg) {}
97 };
98
104 class bad_get : public console_error
105 {
106 public:
111 bad_get(const std::string &msg)
112 : console_error(msg) {}
113 };
114
120 {
121 public:
126 multiarray_error(const std::string &msg)
127 : console_error(msg) {}
128 };
129
135 {
136 public:
141 container_error(const std::string &msg)
142 : console_error(msg) {}
143 };
144
150 {
151 public:
156 index_error(const std::string &msg)
157 : console_error(msg) {}
158 };
159
166 {
167 public:
172 bad_maybe_access(const std::string &msg)
173 : console_error(msg) {}
174 };
175
182 {
183 public:
188 domain_error(const std::string &msg)
189 : console_error(msg) {}
190 };
191}
bad_format(const std::string &msg)
构造 bad_format。
Definition csexc.h:80
bad_get(const std::string &msg)
构造 bad_get。
Definition csexc.h:111
bad_maybe_access(const std::string &msg)
构造 bad_maybe_access。
Definition csexc.h:172
console_error(const std::string &msg)
构造 console_error。
Definition csexc.h:50
container_error(const std::string &msg)
构造 container_error。
Definition csexc.h:141
domain_error(const std::string &msg)
构造 domain_error。
Definition csexc.h:188
fatal_logging(const std::string &msg)
构造 fatal_logging。
Definition csexc.h:65
file_error(const std::string &msg)
构造 file_error。
Definition csexc.h:95
index_error(const std::string &msg)
构造 index_error。
Definition csexc.h:156
multiarray_error(const std::string &msg)
构造 multiarray_error。
Definition csexc.h:126
本库所有组件所在的顶层命名空间。