This file is indexed.

/usr/include/dataquay/RDFException.h is in libdataquay-dev 0.9-3.

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
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*-  vi:set ts=8 sts=4 sw=4: */

/*
    Dataquay

    A C++/Qt library for simple RDF datastore management.
    Copyright 2009-2012 Chris Cannam.
  
    Permission is hereby granted, free of charge, to any person
    obtaining a copy of this software and associated documentation
    files (the "Software"), to deal in the Software without
    restriction, including without limitation the rights to use, copy,
    modify, merge, publish, distribute, sublicense, and/or sell copies
    of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:

    The above copyright notice and this permission notice shall be
    included in all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
    ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
    CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

    Except as contained in this notice, the name of Chris Cannam
    shall not be used in advertising or otherwise to promote the sale,
    use or other dealings in this Software without prior written
    authorization.
*/

#ifndef _DATAQUAY_EXCEPTION_H_
#define _DATAQUAY_EXCEPTION_H_

#include <QString>
#include <exception>

namespace Dataquay
{

class Uri;
class Node;
class Triple;

/**
 * \class RDFException RDFException.h <dataquay/RDFException.h>
 *
 * RDFException is an exception that results from incorrect usage of
 * the RDF store interface or unsuitable data provided to a function.
 * For example, this exception would be thrown in response to trying
 * to add an incomplete triple to the store.
 */
class RDFException : virtual public std::exception
{
public:
    RDFException(QString message) throw();
    RDFException(QString message, QString data) throw();
    RDFException(QString message, const Uri &uri) throw();
    RDFException(QString message, const Node &node) throw();
    RDFException(QString message, const Triple &triple) throw();
    RDFException(const RDFException &e) throw();
    RDFException &operator=(const RDFException &e) throw();
    virtual ~RDFException() throw();
    virtual const char *what() const throw() { return m_message; }

protected:
    char *m_message;
    void setMessage(QString m);
};

/**
 * \class RDFIncompleteURI RDFException.h <dataquay/RDFException.h>
 * 
 * RDFIncompleteURI is thrown when an attempt is made to construct a
 * Uri from an incomplete URI string, such as a relative URI or a
 * string with no scheme. Relative URIs should be represented as plain
 * strings, and expanded by the store using its base URI into Uri
 * objects.
 */
class RDFIncompleteURI : virtual public RDFException
{
public:
    RDFIncompleteURI(QString message, QString data) throw() :
        RDFException(message, data) { }
};

/**
 * \class RDFInternalError RDFException.h <dataquay/RDFException.h>
 *
 * RDFInternalError is an exception that results from an internal
 * error in the RDF store.
 */
class RDFInternalError : virtual public RDFException
{
public:
    RDFInternalError(QString message, QString data = "") throw() :
        RDFException(message, data) { }
    RDFInternalError(QString message, const Uri &data) throw() :
        RDFException(message, data) { }
};

/**
 * \class RDFUnsupportedError RDFException.h <dataquay/RDFException.h>
 *
 * RDFUnsupportedError is an exception that results from an attempt to
 * use a feature that is not supported or not configured in the
 * current build.
 */
class RDFUnsupportedError : virtual public RDFException
{
public:
    RDFUnsupportedError(QString message, QString data = "") throw() :
        RDFException(message, data) { }
    RDFUnsupportedError(QString message, const Uri &data) throw() :
        RDFException(message, data) { }
};

/**
 * \class RDFTransactionError RDFException.h <dataquay/RDFException.h>
 *
 * RDFTransactionError is an exception that results from incorrect use
 * of a Transaction, for example using a Transaction object after it
 * has been committed.
 */
class RDFTransactionError : virtual public RDFException
{
public:
    RDFTransactionError(QString message, QString data = "") throw() :
        RDFException(message, data) { }
};

/**
 * \class RDFDuplicateImportException RDFException.h <dataquay/RDFException.h>
 *
 * RDFDuplicateImportException is an exception that results from an
 * import into a store from an RDF document in ImportFailOnDuplicates
 * mode, where the document contains a triple that already exists in
 * the store.
 */
class RDFDuplicateImportException : virtual public RDFException
{
public:
    RDFDuplicateImportException(QString message, QString data = "") throw() :
        RDFException(message, data) { }
    RDFDuplicateImportException(QString message, const Triple &t) throw() :
        RDFException(message, t) { }
};

}

#endif