From bd3fe0cac583739bc0d7c4b5c8f301bb350abca0 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Fri, 30 Aug 2019 00:19:31 -0400 Subject: Renamed lib to deps so github will ignore it for language stats --- deps/sol2/docs/source/api/error.rst | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 deps/sol2/docs/source/api/error.rst (limited to 'deps/sol2/docs/source/api/error.rst') diff --git a/deps/sol2/docs/source/api/error.rst b/deps/sol2/docs/source/api/error.rst new file mode 100644 index 0000000..0548648 --- /dev/null +++ b/deps/sol2/docs/source/api/error.rst @@ -0,0 +1,21 @@ +error +===== +*the single error/exception type* + + +.. code-block:: cpp + + class error : public std::runtime_error { + public: + error(const std::string& str): std::runtime_error("lua: error: " + str) {} + }; + + +.. note:: + + Please do not throw this error type yourself. It belongs to the library and we do some information appending at the front. + + +If an eror is thrown by sol, it is going to be of this type. We use this in a single place: the default ``at_panic`` function we bind on construction of a :ref:`sol::state`. If you turn :doc:`off exceptions<../exceptions>`, the chances of you seeing this error are nil unless you specifically use it to pull errors out of things such as :doc:`sol::protected_function`. + +As it derives from ``std::runtime_error``, which derives from ``std::exception``, you can catch it with a ``catch (const std::exception& )`` clause in your try/catch blocks. You can retrieve a string error from Lua (Lua pushes all its errors as string returns) by using this type with any of the get or lookup functions in sol. -- cgit v1.2.3