SeqAn3 3.1.0
The Modern C++ library for sequence analysis.
exception.hpp
Go to the documentation of this file.
1// -----------------------------------------------------------------------------------------------------
2// Copyright (c) 2006-2021, Knut Reinert & Freie Universität Berlin
3// Copyright (c) 2016-2021, Knut Reinert & MPI für molekulare Genetik
4// This file may be used, modified and/or redistributed under the terms of the 3-clause BSD-License
5// shipped with this file and also available at: https://github.com/seqan/seqan3/blob/master/LICENSE.md
6// -----------------------------------------------------------------------------------------------------
7
13#pragma once
14
15#include <stdexcept>
16
18
19namespace seqan3
20{
21
24{
25public:
30};
31
34{
35public:
36
41 {}
42};
43
44} // namespace seqan3
Thrown in function seqan3::erase_gap, if a position does not contain a gap.
Definition: exception.hpp:24
gap_erase_failure(std::string const &s)
The constructor.
Definition: exception.hpp:29
Thrown if the configuration of the alignment algorithm is invalid.
Definition: exception.hpp:34
invalid_alignment_configuration(std::string const &s)
The constructor.
Definition: exception.hpp:40
The main SeqAn3 namespace.
Definition: cigar_operation_table.hpp:2
SeqAn specific customisations in the standard namespace.
Provides platform and dependency checks.