SeqAn3
3.0.2
The Modern C++ library for sequence analysis.
▼
SeqAn3
Welcome
►
Setup
►
Tutorial
►
How-To
Cookbook
►
About
►
API Reference (Modules)
▼
API Reference (details)
►
Namespace List
►
Class List
▼
File List
►
File List
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
exception.hpp
Go to the documentation of this file.
1
// -----------------------------------------------------------------------------------------------------
2
// Copyright (c) 2006-2020, Knut Reinert & Freie Universität Berlin
3
// Copyright (c) 2016-2020, 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
23
class
gap_erase_failure
:
public
std::logic_error
24
{
25
public
:
29
gap_erase_failure
(
std::string
const
& s) :
std
::
logic_error
{s} {}
30
};
31
33
class
invalid_alignment_configuration
:
public
std::invalid_argument
34
{
35
public
:
36
40
invalid_alignment_configuration
(
std::string
const
& s) :
std
::
invalid_argument
{s}
41
{}
42
};
43
44
}
// namespace seqan3
std::string
seqan3::gap_erase_failure
Thrown in function seqan3::erase_gap, if a position does not contain a gap.
Definition:
exception.hpp:24
seqan3::invalid_alignment_configuration::invalid_alignment_configuration
invalid_alignment_configuration(std::string const &s)
The constructor.
Definition:
exception.hpp:40
stdexcept
seqan3
The main SeqAn3 namespace.
Definition:
aligned_sequence_concept.hpp:29
std::logic_error
std::invalid_argument
seqan3::gap_erase_failure::gap_erase_failure
gap_erase_failure(std::string const &s)
The constructor.
Definition:
exception.hpp:29
platform.hpp
Provides platform and dependency checks.
std
SeqAn specific customisations in the standard namespace.
seqan3::invalid_alignment_configuration
Thrown if the configuration of the alignment algorithm is invalid.
Definition:
exception.hpp:34
Version:
main_user
main_dev
3.4.0
3.3.0
3.2.0
3.1.0
3.0.3
3.0.2
3.0.1
3.0.0
seqan3
alignment
exception.hpp
Generated on Thu Dec 3 2020 18:58:17 for SeqAn3 by
1.8.20