mosesdecoder/kenlm/lm/lm_exception.hh

49 lines
1012 B
C++
Raw Normal View History

#ifndef LM_LM_EXCEPTION__
#define LM_LM_EXCEPTION__
// Named to avoid conflict with util/exception.hh.
#include "util/exception.hh"
#include "util/string_piece.hh"
#include <exception>
#include <string>
namespace lm {
class ConfigException : public util::Exception {
public:
ConfigException() throw();
~ConfigException() throw();
};
class LoadException : public util::Exception {
public:
virtual ~LoadException() throw();
protected:
LoadException() throw();
};
class FormatLoadException : public LoadException {
public:
FormatLoadException() throw();
~FormatLoadException() throw();
};
class VocabLoadException : public LoadException {
public:
virtual ~VocabLoadException() throw();
VocabLoadException() throw();
};
class SpecialWordMissingException : public VocabLoadException {
public:
explicit SpecialWordMissingException(StringPiece which) throw();
~SpecialWordMissingException() throw();
};
} // namespace lm
#endif // LM_LM_EXCEPTION