mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 18:19:35 +00:00
24 lines
466 B
C++
24 lines
466 B
C++
#pragma once
|
|
#include <exception>
|
|
#include <string>
|
|
|
|
namespace fnd
|
|
{
|
|
class Exception : public std::exception
|
|
{
|
|
public:
|
|
Exception() noexcept;
|
|
Exception(const std::string& what) noexcept;
|
|
Exception(const std::string& module, const std::string& what) noexcept;
|
|
|
|
const char* what() const noexcept;
|
|
const char* module() const noexcept;
|
|
const char* error() const noexcept;
|
|
private:
|
|
std::string what_;
|
|
std::string module_;
|
|
std::string error_;
|
|
};
|
|
}
|
|
|
|
|