Tidying
This commit is contained in:
@@ -6,11 +6,11 @@ namespace Bloom::Exceptions
|
||||
class TargetControllerStartupFailure: public Exception
|
||||
{
|
||||
public:
|
||||
explicit TargetControllerStartupFailure(const std::string& message) : Exception(message) {
|
||||
explicit TargetControllerStartupFailure(const std::string& message): Exception(message) {
|
||||
this->message = message;
|
||||
}
|
||||
|
||||
explicit TargetControllerStartupFailure(const char* message) : Exception(message) {
|
||||
explicit TargetControllerStartupFailure(const char* message): Exception(message) {
|
||||
this->message = std::string(message);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user