mirror of
https://github.com/red0124/ssp.git
synced 2025-01-23 13:05:20 +01:00
24 lines
346 B
C++
24 lines
346 B
C++
|
#pragma once
|
||
|
#include <exception>
|
||
|
#include <string>
|
||
|
|
||
|
namespace ss {
|
||
|
|
||
|
////////////////
|
||
|
// exception
|
||
|
////////////////
|
||
|
|
||
|
class exception : public std::exception {
|
||
|
std::string msg_;
|
||
|
|
||
|
public:
|
||
|
exception(const std::string& msg): msg_{msg} {
|
||
|
}
|
||
|
|
||
|
virtual char const* what() const noexcept {
|
||
|
return msg_.c_str();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
} /* ss */
|