ChainCLI
A modern C++20 command-line interface library
Loading...
Searching...
No Matches
context_exception.h
1/*
2 * Copyright 2025 Dominik Czekai
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 */
16
17#pragma once
18#include <stdexcept>
19#include <string>
20#include <unordered_map>
21#include <any>
22
23namespace cli
24{
26 class MissingArgumentException : public std::runtime_error
27{
28public:
29 MissingArgumentException(const std::string &name,
30 const std::unordered_map<std::string, std::any> &args)
31 : std::runtime_error(makeMessage(name, args))
32 {
33 }
34
35private:
36 static std::string makeMessage(const std::string &name,
37 const std::unordered_map<std::string, std::any> &args);
38};
39
41class InvalidArgumentTypeException : public std::runtime_error
42{
43public:
44 InvalidArgumentTypeException(const std::string &name, const std::type_info &requested,
45 const std::type_info &actual)
46 : std::runtime_error(makeMessage(name, requested, actual))
47 {
48 }
49
50private:
51 static std::string makeMessage(const std::string &name, const std::type_info &requested,
52 const std::type_info &actual);
53};
54} // namespace cli
Thrown when an argument type that was requested is not the one that was parsed.
Definition context_exception.h:42
Thrown when an argument that was requested is missing in the context.
Definition context_exception.h:27