mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-26 21:42:19 +03:00
24 lines
640 B
C++
24 lines
640 B
C++
#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
|