This file is indexed.

/usr/include/libixion-0.10/ixion/exceptions.hpp is in libixion-dev 0.9.1-3ubuntu1.

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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#ifndef INCLUDED_IXION_EXCEPTIONS_HPP
#define INCLUDED_IXION_EXCEPTIONS_HPP

#include "env.hpp"

#include <exception>
#include <string>

namespace ixion {

class IXION_DLLPUBLIC general_error : public std::exception
{
public:
    explicit general_error(const std::string& msg);
    ~general_error() throw();
    virtual const char* what() const throw();
private:
    std::string m_msg;
};

class IXION_DLLPUBLIC file_not_found : public std::exception
{
public:
    explicit file_not_found(const std::string& fpath);
    ~file_not_found() throw();
    virtual const char* what() const throw();
private:
    std::string m_fpath;
};

/**
 * This exception is thrown typically from the {@link model_context} class.
 */
class IXION_DLLPUBLIC model_context_error: public general_error
{
public:
    enum error_type
    {
        circular_dependency,
        sheet_name_conflict
    };

    explicit model_context_error(const std::string& msg, error_type type);

    error_type get_error_type() const;

private:
    error_type m_type;
};

}

#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */