blob: 0b572e984f79980f472886940e732c1b297fee2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include "lm/lm_exception.hh"
#include<errno.h>
#include<stdio.h>
namespace lm {
ConfigException::ConfigException() throw() {}
ConfigException::~ConfigException() throw() {}
LoadException::LoadException() throw() {}
LoadException::~LoadException() throw() {}
FormatLoadException::FormatLoadException() throw() {}
FormatLoadException::~FormatLoadException() throw() {}
VocabLoadException::VocabLoadException() throw() {}
VocabLoadException::~VocabLoadException() throw() {}
SpecialWordMissingException::SpecialWordMissingException() throw() {}
SpecialWordMissingException::~SpecialWordMissingException() throw() {}
} // namespace lm
|