mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-02 17:09:36 +03:00
21 lines
340 B
C
21 lines
340 B
C
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace MosesTraining {
|
||
|
namespace Syntax {
|
||
|
|
||
|
class Exception {
|
||
|
public:
|
||
|
Exception(const char *msg) : msg_(msg) {}
|
||
|
Exception(const std::string &msg) : msg_(msg) {}
|
||
|
|
||
|
const std::string &msg() const { return msg_; }
|
||
|
|
||
|
private:
|
||
|
std::string msg_;
|
||
|
};
|
||
|
|
||
|
} // namespace Syntax
|
||
|
} // namespace MosesTraining
|