Tidied exceptions
This commit is contained in:
@@ -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)
|
||||
{}
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user