-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathargument_error.cpp
More file actions
54 lines (44 loc) · 1.91 KB
/
argument_error.cpp
File metadata and controls
54 lines (44 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include "pch.hpp"
#include "argument_error.hpp"
namespace be::cli {
///////////////////////////////////////////////////////////////////////////////
ArgumentError::ArgumentError(const HandlerContext& context, const S& msg)
: std::runtime_error(msg),
raw_position_(context.raw_position()),
arg_(context.argument()) { }
///////////////////////////////////////////////////////////////////////////////
ArgumentError::ArgumentError(const HandlerContext& context, const char* msg)
: std::runtime_error(msg),
raw_position_(context.raw_position()),
arg_(context.argument()) { }
///////////////////////////////////////////////////////////////////////////////
ArgumentError::ArgumentError(I32 raw_position, S argument, const S& msg)
: std::runtime_error(msg),
raw_position_(raw_position),
arg_(argument) { }
///////////////////////////////////////////////////////////////////////////////
ArgumentError::ArgumentError(I32 raw_position, S argument, const char* msg)
: std::runtime_error(msg),
raw_position_(raw_position),
arg_(argument) { }
///////////////////////////////////////////////////////////////////////////////
ArgumentError::ArgumentError(ArgumentError&& other) noexcept
: std::runtime_error(other.what()),
raw_position_(other.raw_position_),
arg_(other.arg_) { }
///////////////////////////////////////////////////////////////////////////////
ArgumentError& ArgumentError::operator=(ArgumentError&& other) noexcept {
*((std::runtime_error*)this) = *(std::runtime_error*)&other;
raw_position_ = other.raw_position_;
arg_ = std::move(other.arg_);
return *this;
}
///////////////////////////////////////////////////////////////////////////////
std::size_t ArgumentError::raw_position() const {
return raw_position_;
}
///////////////////////////////////////////////////////////////////////////////
const S& ArgumentError::argument() const {
return arg_;
}
} // be::cli