This file is indexed.

/usr/include/JAGS/graph/NodeError.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
17
#ifndef NODE_ERROR_H_
#define NODE_ERROR_H_

#include <stdexcept>

class Node;

/**
 * @short Exception class for Nodes
 */
class NodeError : public std::runtime_error {
public:
    Node const * node;
    NodeError(Node const *enode, std::string const &msg);
};

#endif /* NODE_ERROR_H_ */