This file is indexed.

/usr/include/ngexception.hpp is in libnglib-dev 4.9.13.dfsg-8build2.

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

/**************************************************************************/
/* File:   ngexception.hpp                                                */
/* Author: Joachim Schoeberl                                              */
/* Date:   16. Jan. 2002                                                  */
/**************************************************************************/

namespace netgen
{

/// Base class for all ng exceptions
class NgException 
{
  /// verbal description of exception
  string what;
public:
  ///
  NgException (const string & s);
  ///
  virtual ~NgException ();

  /// append string to description
  void Append (const string & s);
  //  void Append (const char * s);
  
  /// verbal description of exception
  const string & What() const { return what; }
};
}

#endif