/usr/include/libixion-0.11/ixion/exceptions.hpp is in libixion-dev 0.11.1-3+b1.
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 | /* -*- 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:
general_error();
explicit general_error(const std::string& msg);
virtual ~general_error() throw();
virtual const char* what() const throw();
protected:
void set_message(const std::string& msg);
private:
std::string m_msg;
};
class IXION_DLLPUBLIC file_not_found : public general_error
{
public:
explicit file_not_found(const std::string& fpath);
virtual ~file_not_found() throw();
};
/**
* 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);
virtual ~model_context_error() throw();
error_type get_error_type() const;
private:
error_type m_type;
};
}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|