NarcEngine 0.1.1
C++ Vulkan game engine
 
Loading...
Searching...
No Matches
ErrorException.h
1//
2// Created by theoh on 27/02/2025.
3//
4
5#pragma once
6
7namespace narclog
8{
9 class NARCLOG_API ErrorException final : public std::runtime_error
10 {
11 public:
12 explicit ErrorException(const std::string& message): runtime_error(message)
13 {
14 }
15 };
16}