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-12-08 06:15:37 +03:00
|
|
|
ConfigException::ConfigException() throw() {}
|
|
|
|
ConfigException::~ConfigException() throw() {}
|
|
|
|
|
2010-09-15 01:33:11 +04:00
|
|
|
LoadException::LoadException() throw() {}
|
|
|
|
LoadException::~LoadException() 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-12-08 06:15:37 +03:00
|
|
|
VocabLoadException::VocabLoadException() throw() {}
|
|
|
|
VocabLoadException::~VocabLoadException() throw() {}
|
|
|
|
|
2011-02-24 22:37:39 +03:00
|
|
|
SpecialWordMissingException::SpecialWordMissingException() throw() {}
|
2010-09-15 01:33:11 +04:00
|
|
|
SpecialWordMissingException::~SpecialWordMissingException() throw() {}
|
2010-09-10 04:36:07 +04:00
|
|
|
|
|
|
|
} // namespace lm
|