blob: 8864f4df2e7fcd34a32087b595af7883e05256a1 (
plain)
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
|
#pragma once
#include "String.hpp"
namespace cru {
class CRU_BASE_API Exception {
public:
Exception() = default;
Exception(String message) : message_(std::move(message)) {}
CRU_DEFAULT_COPY(Exception)
CRU_DEFAULT_MOVE(Exception)
virtual ~Exception() = default;
public:
String GetMessage() const { return message_; }
private:
String message_;
};
class CRU_BASE_API TextEncodeException : public Exception {
public:
using Exception::Exception;
};
} // namespace cru
|