Loading [MathJax]/extensions/tex2jax.js
numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages Concepts
exception.h
Go to the documentation of this file.
1/*
2 * Copyright 2021 MusicScience37 (Kenta Kabashima)
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
20#pragma once
21
22#include <stdexcept>
23#include <string>
24#include <string_view>
25
26#include <fmt/format.h>
27
29
30namespace num_collect {
31inline namespace base {
32
33namespace impl {
34
42[[nodiscard]] inline auto format_error(std::string_view message,
43 util::source_info_view source_info) -> std::string {
44 return fmt::format(FMT_STRING("{} ({}:{}:{})"), message,
45 source_info.file_path(), source_info.line(), source_info.column());
46}
47
48} // namespace impl
49
53class num_collect_exception : public std::runtime_error {
54public:
61 explicit num_collect_exception(std::string_view message,
63 : std::runtime_error(impl::format_error(message, source_info)) {}
64};
65
73
81
89
97
105
106} // namespace base
107} // namespace num_collect
Class of exception on failure in algorithm.
Definition exception.h:93
Class of exception on assertion failure.
Definition exception.h:69
Class of exception on errors in files.
Definition exception.h:101
num_collect_exception(std::string_view message, util::source_info_view source_info=util::source_info_view())
Constructor.
Definition exception.h:61
Class of exception on invalid arguments.
Definition exception.h:85
num_collect_exception(std::string_view message, util::source_info_view source_info=util::source_info_view())
Constructor.
Definition exception.h:61
num_collect_exception(std::string_view message, util::source_info_view source_info=util::source_info_view())
Constructor.
Definition exception.h:61
Class of exception on not satisfying a precondition.
Definition exception.h:77
num_collect_exception(std::string_view message, util::source_info_view source_info=util::source_info_view())
Constructor.
Definition exception.h:61
Class to hold information of source codes.
Namespace of internal implementations.
Definition exception.h:33
auto format_error(std::string_view message, util::source_info_view source_info) -> std::string
Format error.
Definition exception.h:42
Namespace of definitions common in this project.
Namespace of num_collect source codes.
STL namespace.
Definition of source_info_view class.