Searched refs:invalid_path_error (Results 1 - 5 of 5) sorted by relevance

/netbsd-current/external/bsd/kyua-cli/dist/utils/fs/
H A Dexceptions.cpp53 /// Constructs a new invalid_path_error.
57 fs::invalid_path_error::invalid_path_error(const std::string& textual_path, function in class:fs::invalid_path_error
66 fs::invalid_path_error::~invalid_path_error(void) throw()
75 fs::invalid_path_error::invalid_path(void) const
H A Dexceptions.hpp51 class invalid_path_error : public error { class in namespace:utils::fs
56 explicit invalid_path_error(const std::string&, const std::string&);
57 virtual ~invalid_path_error(void) throw();
H A Dexceptions_test.cpp49 ATF_TEST_CASE_WITHOUT_HEAD(invalid_path_error); variable
50 ATF_TEST_CASE_BODY(invalid_path_error)
52 const fs::invalid_path_error e("some/invalid/path", "The reason");
83 ATF_ADD_TEST_CASE(tcs, invalid_path_error);
H A Dpath_test.cpp41 using utils::fs::invalid_path_error;
88 fail("invalid_path_error not raised");
89 } catch (const invalid_path_error& e) {
235 ATF_REQUIRE_THROW(invalid_path_error, path("foo") / "");
H A Dpath.cpp50 /// \throw utils::fs::invalid_path_error If the path is empty.
55 throw fs::invalid_path_error(in, "Cannot be empty");
88 /// \throw utils::fs::invalid_path_error If the input text does not represent a
259 /// \throw utils::fs::invalid_path_error If components does not represent a

Completed in 69 milliseconds