view exceptions.h @ 415:9bf8ba050122

Replace all remaining Boost.Python references * exceptions.h (pytave::error_alreadY_set): New exception placeholder class. * __py_struct_from_dict__.cc, oct-py-eval.cc, oct-py-types.cc, oct-py-util.cc, pycall.cc, pyeval.cc, pyexec.cc: Use it in place of boost::python. Remove all #includes of Boost headers.
author Mike Miller <mtmiller@octave.org>
date Wed, 03 May 2017 21:48:07 -0700
parents 09a1acb81d8b
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