Home
last modified time | relevance | path

Searched refs:not_found_error (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/bsd/atf/dist/tools/
H A Dexceptions.hpp39 class not_found_error : class
45 not_found_error(const std::string& message, const T& value) throw();
47 virtual ~not_found_error(void) throw();
54 not_found_error< T >::not_found_error(const std::string& message, in not_found_error() function in tools::not_found_error
64 not_found_error< T >::~not_found_error(void) in ~not_found_error()
72 not_found_error< T >::get_value(void) in get_value()
H A Datffile.cpp222 throw tools::not_found_error< tools::fs::path > in got_tp()
335 throw tools::not_found_error< tools::fs::path > in read_atffile()
343 throw tools::not_found_error< std::string > in read_atffile()
H A Datffile_test.cpp585 } catch (const tools::not_found_error< std::string >& e) { in ATF_TEST_CASE_BODY()
604 } catch (const tools::not_found_error< tools::fs::path >& e) { in ATF_TEST_CASE_BODY()
/netbsd-src/external/bsd/kyua-cli/dist/engine/
H A Dexceptions.cpp87 engine::not_found_error::not_found_error(const std::string& message) : in not_found_error() function in engine::not_found_error
94 engine::not_found_error::~not_found_error(void) throw() in ~not_found_error()
H A Dexceptions_test.cpp64 ATF_TEST_CASE_WITHOUT_HEAD(not_found_error);
65 ATF_TEST_CASE_BODY(not_found_error) in ATF_TEST_CASE_BODY() argument
67 const engine::not_found_error e("Missing foo"); in ATF_TEST_CASE_BODY()
77 ATF_ADD_TEST_CASE(tcs, not_found_error); in ATF_INIT_TEST_CASES()
H A Dexceptions.hpp73 class not_found_error : public error { class
75 explicit not_found_error(const std::string&);
76 virtual ~not_found_error(void) throw();
H A Dtest_program_test.cpp115 ATF_REQUIRE_THROW_RE(engine::not_found_error, in ATF_TEST_CASE_BODY()
H A Dtest_program.cpp367 throw not_found_error(F("Unknown test case %s in test program %s") % name % in find()