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