Home
last modified time | relevance | path

Searched refs:property_not_found (Results 1 – 3 of 3) sorted by relevance

/third_party/boost/boost/property_map/
Ddynamic_property_map.hpp77 struct property_not_found : public dynamic_property_exception { struct
80 property_not_found(const std::string& property) : property(property) {} in property_not_found() argument
81 virtual ~property_not_found() throw() {} in ~property_not_found() argument
268 BOOST_THROW_EXCEPTION(property_not_found(name)); in generate()
/third_party/boost/libs/property_map/doc/
Ddynamic_property_map.rst219 ``property_not_found``.
299 then ``property_not_found`` is thrown. If a candidate property map is
390 struct property_not_found : public std::exception {
392 property_not_found(const std::string& property);
393 virtual ~property_not_found() throw();
/third_party/boost/libs/property_map/test/
Ddynamic_properties_test.cpp120 } catch (boost::property_not_found&) { } in test_main()