Skip to content

Commit 367dc24

Browse files
committed
feat(error): add umbrella header
1 parent edaf62a commit 367dc24

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

include/vix/error/error.hpp

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/**
2+
*
3+
* @file error/error.hpp
4+
* @author Gaspard Kirira
5+
*
6+
* @brief Internal aggregation header for the Vix error module.
7+
*
8+
* This file includes all core components of the Vix error system.
9+
*
10+
* For most use cases, prefer:
11+
* #include <vix/error.hpp>
12+
*
13+
* Copyright 2025, Gaspard Kirira.
14+
* All rights reserved.
15+
* https://github.com/vixcpp/vix
16+
*
17+
* Use of this source code is governed by a MIT license
18+
* that can be found in the License file.
19+
*
20+
* Vix.cpp
21+
*/
22+
#ifndef VIX_ERROR_ERROR_HPP
23+
#define VIX_ERROR_ERROR_HPP
24+
25+
#include <vix/error/Error.hpp>
26+
#include <vix/error/ErrorCategory.hpp>
27+
#include <vix/error/ErrorCode.hpp>
28+
#include <vix/error/Exception.hpp>
29+
#include <vix/error/Result.hpp>
30+
31+
#endif // VIX_ERROR_ERROR_HPP

0 commit comments

Comments
 (0)