/usr/include/JAGS/module/ModuleError.h is in jags 4.2.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #ifndef MODULE_ERROR_H_
#define MODULE_ERROR_H_
#include <string>
namespace jags {
class Node;
class Distribution;
class Function;
void throwRuntimeError(std::string const &message);
void throwLogicError(std::string const &message);
void throwNodeError(Node const *node, std::string const &message);
void throwDistError(Distribution const *dist, std::string const &message);
void throwFuncError(Function const *func, std::string const &message);
} /* namespace jags */
#endif /* MODULE_ERROR_H_ */
|