This file is indexed.

/usr/include/primesieve/primesieve_error.hpp is in libprimesieve-dev-common 6.3+ds-2ubuntu1.

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
21
22
23
24
25
26
27
28
29
30
31
32
33
///
/// @file   primesieve_error.hpp
/// @brief  The primesieve_error class is used for all
///         exceptions within primesieve.
///
/// Copyright (C) 2017 Kim Walisch, <kim.walisch@gmail.com>
///
/// This file is distributed under the BSD License. See the COPYING
/// file in the top level directory.
///

#ifndef PRIMESIEVE_ERROR_HPP
#define PRIMESIEVE_ERROR_HPP

#include <stdexcept>
#include <string>

namespace primesieve {

/// primesieve throws a primesieve_error exception
/// if an error occurs e.g. prime > 2^64.
///
class primesieve_error : public std::runtime_error
{
public:
  primesieve_error(const std::string& msg)
    : std::runtime_error(msg)
  { }
};

} // namespace

#endif