2010-09-28 20:26:55 +04:00
|
|
|
#include "lm/lm_exception.hh"
|
2010-09-10 04:36:07 +04:00
|
|
|
|
|
|
|
#include<errno.h>
|
|
|
|
#include<stdio.h>
|
|
|
|
|
|
|
|
namespace lm {
|
|
|
|
|
2010-09-15 01:33:11 +04:00
|
|
|
LoadException::LoadException() throw() {}
|
|
|
|
LoadException::~LoadException() throw() {}
|
|
|
|
VocabLoadException::VocabLoadException() throw() {}
|
|
|
|
VocabLoadException::~VocabLoadException() throw() {}
|
2010-09-10 04:36:07 +04:00
|
|
|
|
2010-09-15 01:33:11 +04:00
|
|
|
FormatLoadException::FormatLoadException() throw() {}
|
|
|
|
FormatLoadException::~FormatLoadException() throw() {}
|
2010-09-10 04:36:07 +04:00
|
|
|
|
2010-09-15 01:33:11 +04:00
|
|
|
SpecialWordMissingException::SpecialWordMissingException(StringPiece which) throw() {
|
|
|
|
*this << "Missing special word " << which;
|
2010-09-10 04:36:07 +04:00
|
|
|
}
|
2010-09-15 01:33:11 +04:00
|
|
|
SpecialWordMissingException::~SpecialWordMissingException() throw() {}
|
2010-09-10 04:36:07 +04:00
|
|
|
|
|
|
|
} // namespace lm
|