Engine²
Open-source game engine written in C++.
Loading...
Searching...
No Matches
ConstraintError.hpp
Go to the documentation of this file.
1/**************************************************************************
2 * EngineSquared v0.1.1
3 *
4 * EngineSquared is a software package, part of the Engine² organization.
5 *
6 * This file is part of the EngineSquared project that is under MIT License.
7 * Copyright © 2025-present by @EngineSquared, All rights reserved.
8 *
9 * EngineSquared is a free software: you can redistribute it and/or modify
10 * it under the terms of the MIT License. See the project's LICENSE file for
11 * the full license text and details.
12 *
13 * @file ConstraintError.hpp
14 * @brief Exception class for constraint-related errors
15 *
16 * @author @EngineSquared
17 * @version 0.1.1
18 * @date 2025-12-04
19 **************************************************************************/
20
21#pragma once
22
23#include <stdexcept>
24
25namespace Physics::Exception {
26
37class ConstraintError : public std::runtime_error {
38 using std::runtime_error::runtime_error;
39};
40
41} // namespace Physics::Exception
Exception thrown when a constraint operation fails.
Definition ConstraintError.hpp:37
Definition CharacterControllerError.hpp:5