Tidied exceptions

This commit is contained in:
Nav
2024-11-23 21:09:33 +00:00
parent 9aef4be2f1
commit 282086eaa2
8 changed files with 40 additions and 16 deletions

View File

@@ -1,14 +1,14 @@
#pragma once
#include "Exception.hpp"
#include "FatalErrorException.hpp"
namespace Exceptions
{
class TargetControllerStartupFailure: public Exception
class TargetControllerStartupFailure: public FatalErrorException
{
public:
explicit TargetControllerStartupFailure(const std::string& message)
: Exception(message)
: FatalErrorException(message)
{}
};
}