NarcEngine 0.1.1
C++ Vulkan game engine
 
Loading...
Searching...
No Matches
FatalException.h
1//
2// Created by theoh on 27/02/2025.
3//
4
5#pragma once
6
7namespace narclog
8{
9 class NARCLOG_API FatalException final : public std::runtime_error
10 {
11 friend class MethodExceptionHandler;
12
13 public:
14 explicit FatalException(const std::string& message)
15 : runtime_error(message)
16 {
17 }
18
19 private:
20 const char* m_name = nullptr;
21 };
22}