Files
BloomPatched/src/Exceptions/TargetControllerStartupFailure.hpp
2024-11-23 21:09:33 +00:00

15 lines
299 B
C++

#pragma once
#include "FatalErrorException.hpp"
namespace Exceptions
{
class TargetControllerStartupFailure: public FatalErrorException
{
public:
explicit TargetControllerStartupFailure(const std::string& message)
: FatalErrorException(message)
{}
};
}