/* */ #include "FatalException.h" namespace aria2 { SharedHandle FatalException::copy() const { SharedHandle e(new FatalException(*this)); return e; } FatalException::FatalException (const char* file, int line, const std::string& msg): Exception(file, line, msg) {} FatalException::FatalException (const char* file, int line, const std::string& msg, const Exception& cause): Exception(file, line, msg, cause) {} } // namespace aria2