blob: ab2ec52fc05683deeb777ce3648cbe99fa850a82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include "lm/lm_exception.hh"
#include<errno.h>
#include<stdio.h>
namespace lm {
LoadException::LoadException() throw() {}
LoadException::~LoadException() throw() {}
VocabLoadException::VocabLoadException() throw() {}
VocabLoadException::~VocabLoadException() throw() {}
FormatLoadException::FormatLoadException() throw() {}
FormatLoadException::~FormatLoadException() throw() {}
SpecialWordMissingException::SpecialWordMissingException(StringPiece which) throw() {
*this << "Missing special word " << which;
}
SpecialWordMissingException::~SpecialWordMissingException() throw() {}
} // namespace lm
|