summaryrefslogtreecommitdiffhomepage
path: root/dev/lib/detail/error.hpp
blob: 85a5e259db1a60fee948d655ef5f00548feef0bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * File: opt.hpp
 * Author: Amlal El Mahrouss,
 * Copyright 2023-2025, Amlal El Mahrouss/SNU Systems Corp all rights reserved.
 */

#ifndef _SNU_ERR_HPP
#define _SNU_ERR_HPP

#include <stdexcept>

namespace snu
{
	using runtime_error = std::runtime_error;
}

#endif // _SNU_ERR_HPP