forked from lksj/einstein-puzzle
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexceptions.cpp
More file actions
46 lines (34 loc) · 1.39 KB
/
Copy pathexceptions.cpp
File metadata and controls
46 lines (34 loc) · 1.39 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
// This file is part of Einstein Puzzle
// Einstein Puzzle
// Copyright (C) 2003-2005 Flowix Games
// Einstein Puzzle is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
// Einstein Puzzle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "exceptions.h"
#include <string>
#include <locale>
#include <codecvt>
#include <stdexcept>
#include <type_traits>
using convert_type = std::codecvt_utf8<wchar_t>;
static std::wstring_convert<convert_type, wchar_t> converter;
Exception::Exception(const char* msg) noexcept:
std::runtime_error(msg)
{
}
Exception::Exception(const std::wstring& msg) noexcept:
std::runtime_error(converter.to_bytes(msg).c_str())
{
}
const std::wstring Exception::getMessage() const noexcept
{
return std::wstring(converter.from_bytes(what()));
}
static_assert(std::is_nothrow_copy_constructible<Exception>::value, "Exception must be nothrow copy constructible");