mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
21 lines
533 B
C++
21 lines
533 B
C++
|
#ifndef _EXCEPTION_HPP_
|
||
|
#define _EXCEPTION_HPP_
|
||
|
|
||
|
#include <string>
|
||
|
#include <stdexcept>
|
||
|
|
||
|
struct Exception : public std::runtime_error
|
||
|
{
|
||
|
Exception(std::string const &error_message = "")
|
||
|
: std::runtime_error(error_message.c_str()) {}
|
||
|
};
|
||
|
|
||
|
#define DefineChildException(ExName, ParentEx) struct ExName : public ParentEx { \
|
||
|
ExName(std::string error_message = "") \
|
||
|
: ParentEx("["+ std::string(__FUNCTION__) +"] => "+ error_message) {} \
|
||
|
};
|
||
|
#define DefineBaseException(ExName) DefineChildException(ExName, Exception);
|
||
|
|
||
|
#endif
|
||
|
|