.. _program_listing_file_include_ruckig_error.hpp: Program Listing for File error.hpp ================================== |exhale_lsh| :ref:`Return to documentation for file ` (``include/ruckig/error.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once #include #include #include namespace ruckig { struct RuckigError: public std::runtime_error { explicit RuckigError(const std::string& message): std::runtime_error("\n[ruckig] " + message) { } }; }