Lines Matching refs:system_error
72 /// \throw system_error An error on failure.
79 throw fs::system_error(F("Cannot get information about %s") % path,
105 throw fs::system_error(F("Failed to get current working directory"),
168 /// \throw system_error If the call to mkdir(2) fails.
174 throw fs::system_error(F("Failed to create directory %s") % dir,
188 /// \throw system_error If any call to mkdir(2) fails.
194 } catch (const fs::system_error& e) {
216 /// \throw fs::system_error If the call to mkdtemp(3) fails.
229 throw fs::system_error(F("Cannot create temporary directory using "
248 /// \throw fs::system_error If the call to mkstemp(3) fails.
261 throw fs::system_error(F("Cannot create temporary file using template "
282 throw fs::system_error(F("Failed to open directory %s") %
318 /// \throw fs::system_error If the call to rmdir(2) fails.
324 throw fs::system_error(F("Removal of %s failed") % file,
334 /// \throw fs::system_error If the call to unlink(2) fails.
340 throw fs::system_error(F("Removal of %s failed") % file,