2016-11-25 07:55:15 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cerrno>
|
2016-12-05 14:41:00 -05:00
|
|
|
#include <cstring>
|
2019-12-24 14:47:49 -05:00
|
|
|
#include <stdexcept>
|
2016-11-25 07:55:15 -05:00
|
|
|
|
|
|
|
#include "common.hpp"
|
|
|
|
|
|
|
|
POLYBAR_NS
|
|
|
|
|
|
|
|
using std::exception;
|
|
|
|
using std::runtime_error;
|
2022-10-15 17:21:40 -04:00
|
|
|
using std::strerror;
|
2016-11-25 07:55:15 -05:00
|
|
|
|
|
|
|
class application_error : public runtime_error {
|
|
|
|
public:
|
|
|
|
explicit application_error(const string& message, int code = 0) : runtime_error(message), code(code) {}
|
|
|
|
int code{0};
|
|
|
|
};
|
|
|
|
|
|
|
|
class system_error : public application_error {
|
|
|
|
public:
|
|
|
|
explicit system_error() : application_error(strerror(errno), errno) {}
|
|
|
|
explicit system_error(const string& message)
|
|
|
|
: application_error(message + " (reason: " + strerror(errno) + ")", errno) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
#define DEFINE_CHILD_ERROR(error, parent) \
|
|
|
|
class error : public parent { \
|
|
|
|
using parent::parent; \
|
|
|
|
}
|
|
|
|
#define DEFINE_ERROR(error) DEFINE_CHILD_ERROR(error, application_error)
|
|
|
|
|
|
|
|
POLYBAR_NS_END
|