SeqAn3  3.2.0-rc.1
The Modern C++ library for sequence analysis.
alignment/exception.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2022, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2022, 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 
17 #include <seqan3/core/platform.hpp>
18 
19 namespace seqan3
20 {
21 
24 {
25 public:
30  {}
31 };
32 
35 {
36 public:
41  {}
42 };
43 
44 } // namespace seqan3
Thrown in function seqan3::erase_gap, if a position does not contain a gap.
Definition: alignment/exception.hpp:24
gap_erase_failure(std::string const &s)
The constructor.
Definition: alignment/exception.hpp:29
Thrown if the configuration of the alignment algorithm is invalid.
Definition: alignment/exception.hpp:35
invalid_alignment_configuration(std::string const &s)
The constructor.
Definition: alignment/exception.hpp:40
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
SeqAn specific customisations in the standard namespace.
Provides platform and dependency checks.