Files
BloomPatched/src/Exceptions/TargetControllerStartupFailure.hpp

15 lines
299 B
C++
Raw Normal View History

2021-04-04 21:04:12 +01:00
#pragma once
2024-11-23 21:09:33 +00:00
#include "FatalErrorException.hpp"
namespace Exceptions
2021-04-04 21:04:12 +01:00
{
2024-11-23 21:09:33 +00:00
class TargetControllerStartupFailure: public FatalErrorException
2021-04-04 21:04:12 +01:00
{
public:
explicit TargetControllerStartupFailure(const std::string& message)
2024-11-23 21:09:33 +00:00
: FatalErrorException(message)
{}
2021-04-04 21:04:12 +01:00
};
}