.. _program_listing_file_src_rdf4cpp_InvalidNode.hpp: Program Listing for File InvalidNode.hpp ======================================== |exhale_lsh| :ref:`Return to documentation for file ` (``src/rdf4cpp/InvalidNode.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #ifndef RDF4CPP_INVALIDNODE_HPP #define RDF4CPP_INVALIDNODE_HPP #include namespace rdf4cpp { struct InvalidNode : std::runtime_error { explicit InvalidNode(std::string const &msg) : runtime_error(msg) { } explicit InvalidNode(char const *msg) : runtime_error(msg) { } }; } // namespace rdf4cpp #endif //RDF4CPP_INVALIDNODE_HPP