SeqAn3 3.4.0-rc.4
The Modern C++ library for sequence analysis.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
exceptions.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2006-2025 Knut Reinert & Freie Universität Berlin
2// SPDX-FileCopyrightText: 2016-2025 Knut Reinert & MPI für molekulare Genetik
3// SPDX-License-Identifier: BSD-3-Clause
4
10#pragma once
11
12#include <stdexcept>
13
15
16SEQAN3_DEPRECATED_HEADER("This header and its functionality is deprecated and will be removed in a future version of SeqAn. Please use the sharg-parser (url: https://github.com/seqan/sharg-parser) instead.");
17
18namespace seqan3
19{
47
60
73
86
99
112
125
138
158
159} // namespace seqan3
Argument parser exception that is thrown whenever there is an error while parsing the command line ar...
Definition exceptions.hpp:39
argument_parser_error(std::string const &s)
The constructor.
Definition exceptions.hpp:44
Argument parser exception that is thrown whenever there is an design error directed at the developer ...
Definition exceptions.hpp:150
design_error(std::string const &s)
The constructor.
Definition exceptions.hpp:155
Argument parser exception thrown when a non-list option is declared multiple times.
Definition exceptions.hpp:104
option_declared_multiple_times(std::string const &s)
The constructor.
Definition exceptions.hpp:109
Argument parser exception thrown when a required option is missing.
Definition exceptions.hpp:91
required_option_missing(std::string const &s)
The constructor.
Definition exceptions.hpp:96
Argument parser exception thrown when too few arguments are provided.
Definition exceptions.hpp:78
too_few_arguments(std::string const &s)
The constructor.
Definition exceptions.hpp:83
Argument parser exception thrown when too many arguments are provided.
Definition exceptions.hpp:65
too_many_arguments(std::string const &s)
The constructor.
Definition exceptions.hpp:70
Argument parser exception thrown when encountering unknown option.
Definition exceptions.hpp:52
unknown_option(std::string const &s)
The constructor.
Definition exceptions.hpp:57
Argument parser exception thrown when an incorrect argument is given as (positional) option value.
Definition exceptions.hpp:117
user_input_error(std::string const &s)
The constructor.
Definition exceptions.hpp:122
Argument parser exception thrown when an argument could not be casted to the according type.
Definition exceptions.hpp:130
validation_error(std::string const &s)
The constructor.
Definition exceptions.hpp:135
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
SeqAn specific customisations in the standard namespace.
Provides platform and dependency checks.
Hide me