MCPcopy Create free account
hub / github.com/RcppCore/Rcpp / file_io_error

Method file_io_error

inst/include/Rcpp/exceptions.h:85–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83 class file_io_error : public std::exception {
84 public:
85 file_io_error(const std::string& file) throw() : // #nocov start
86 message(std::string("file io error: '") + file + "'"), file(file) {};
87 file_io_error(int code, const std::string& file) throw() :
88 message("file io error " + toString(code) + ": '" + file + "'"), file(file) {};
89 file_io_error(const std::string& msg, const std::string& file) throw() :

Callers

nothing calls this directly

Calls 1

toStringFunction · 0.85

Tested by

no test coverage detected