18 lines
319 B
C
18 lines
319 B
C
|
//
|
||
|
// Created by quentin on 1/18/23.
|
||
|
//
|
||
|
|
||
|
#ifndef BUDGET_BADVALUE_H
|
||
|
#define BUDGET_BADVALUE_H
|
||
|
|
||
|
#include <stdexcept>
|
||
|
|
||
|
namespace Budget::Exceptions {
|
||
|
class BadValue : public std::runtime_error {
|
||
|
public:
|
||
|
explicit BadValue(const std::string &what_arg) : std::runtime_error(what_arg) {}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif //BUDGET_BADVALUE_H
|