15 lines
299 B
C++
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)
|
|
{}
|
|
};
|
|
}
|