/* */ #include "FatalException.h" namespace aria2 { std::shared_ptr FatalException::copy() const { return std::make_shared(*this); } 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