2021-04-04 21:04:12 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
2024-11-23 21:09:33 +00:00
|
|
|
#include "FatalErrorException.hpp"
|
2021-06-22 23:52:31 +01:00
|
|
|
|
2023-08-13 15:47:51 +01:00
|
|
|
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:
|
2024-07-23 21:14:22 +01:00
|
|
|
explicit TargetControllerStartupFailure(const std::string& message)
|
2024-11-23 21:09:33 +00:00
|
|
|
: FatalErrorException(message)
|
2024-07-23 21:14:22 +01:00
|
|
|
{}
|
2021-04-04 21:04:12 +01:00
|
|
|
};
|
|
|
|
|
}
|