Change-Id: Ia1c7081377f53fd470addf35526f8b28a949a7b0 Signed-off-by: Jason Lowe-Power <jason@lowepower.com> Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/52523 Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Gabe Black <gabe.black@gmail.com>
13 lines
398 B
C++
13 lines
398 B
C++
#pragma once
|
|
#include "pybind11_tests.h"
|
|
#include <stdexcept>
|
|
|
|
// shared exceptions for cross_module_tests
|
|
|
|
class PYBIND11_EXPORT_EXCEPTION shared_exception : public pybind11::builtin_exception {
|
|
public:
|
|
using builtin_exception::builtin_exception;
|
|
explicit shared_exception() : shared_exception("") {}
|
|
void set_error() const override { PyErr_SetString(PyExc_RuntimeError, what()); }
|
|
};
|