summaryrefslogtreecommitdiffhomepage
path: root/dev/lib/except/error.hpp
blob: 31b9894612f6d397acefd8b844cbb116c3e59ea1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * File: opt.hpp
 * Author: Amlal El Mahrouss,
 * Copyright 2023-2025, Amlal El Mahrouss
 */

#ifndef _SCL_ERR_HPP
#define _SCL_ERR_HPP

#include <stdexcept>

namespace scl
{
	using runtime_error = std::runtime_error;
	using fix_error		= runtime_error;
	using math_error	= runtime_error;
	using cgi_error		= runtime_error;
} // namespace scl

#endif // _SCL_ERR_HPP