This file is indexed.

/usr/include/JAGS/module/ModuleError.h is in jags 3.4.0-1.

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
#ifndef MODULE_ERROR_H_
#define MODULE_ERROR_H_

#include <string>

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);

#endif /* MODULE_ERROR_H_ */