blob: b00a32be8af14da992099d4a9eb0970394a67a62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* File: opt.hpp
* Author: Amlal El Mahrouss,
* Copyright 2023-2025, Amlal El Mahrouss, Licensed under the Boost Software License
*/
#ifndef _OCL_ERR_HPP
#define _OCL_ERR_HPP
#include <stdexcept>
#include <lib/core/error_handler.hpp>
namespace ocl::error
{
using runtime_error = std::runtime_error;
using fix_error = runtime_error;
using math_error = runtime_error;
using cgi_error = runtime_error;
} // namespace ocl::error
#endif // _OCL_ERR_HPP
|