view exceptions.h @ 421:24555fba9964

Include <Python.h> first to suppress possible redefinition warnings * oct-py-eval.cc, oct-py-types.cc, oct-py-util.cc, pycall.cc, pyeval.cc, pyexec.cc: Include <Python.h> before other system and project header files to suppress possible macro redefinition warnings. Normalize and reduce use of Octave header files.
author Mike Miller <mtmiller@octave.org>
date Thu, 04 May 2017 13:22:20 -0700
parents 9bf8ba050122
children 8247f298fd16
line wrap: on
line source

/*

Copyright (C) 2015-2016 Mike Miller
Copyright (C) 2008 David Grundberg, HÃ¥kan Fors Nilsson

This file is part of Pytave.

Pytave is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or (at your
option) any later version.

Pytave is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
along with Pytave; see the file COPYING.  If not, see
<http://www.gnu.org/licenses/>.

*/

#if ! defined (pytave_exceptions_h)
#define pytave_exceptions_h

#include <Python.h>
#include <string>

namespace pytave
{
  class pytave_exception
  {
  public:
    pytave_exception (const std::string& err) { error = err; };

  private:
    std::string error;
  };

  class octave_error_exception
  {
  public:
    octave_error_exception (const std::string& err) { error = err; };

  private:
    std::string error;
  };

  class octave_parse_exception
  {
  public:
    octave_parse_exception (const std::string& err) { error = err; };

  private:
    std::string error;
  };

  class value_convert_exception
  {
  public:
    value_convert_exception (const std::string& err) { error = err; };

  private:
    std::string error;
  };

  class object_convert_exception
  {
  public:
    object_convert_exception (const std::string& err) { error = err; };

  private:
    std::string error;
  };

  class variable_name_exception
  {
  public:
    variable_name_exception (const std::string& err) { error = err; };

  private:
    std::string error;
  };

  class error_already_set
  {
  };

  std::string fetch_exception_message (void);
}

#endif