1 #ifndef MSP_IO_EXCEPT_H_
2 #define MSP_IO_EXCEPT_H_
4 #include <msp/core/except.h>
9 class FileNotFound: public Exception
12 FileNotFound(const std::string &w_, const std::string &f): Exception(w_), filename(f) { }
13 const std::string &get_filename() { return filename; }
14 ~FileNotFound() throw() { }