-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8e1afef
commit f671c8d
Showing
4 changed files
with
16 additions
and
15 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
src/v2i-hub/RSUHealthMonitorPlugin/src/RSUConfigurationException.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
#pragma once | ||
#include <iostream> | ||
#include <tmx/TmxException.hpp> | ||
|
||
namespace RSUHealthMonitor | ||
{ | ||
class RSUConfigurationException : public std::runtime_error | ||
class RSUConfigurationException : public tmx::TmxException | ||
{ | ||
public: | ||
explicit RSUConfigurationException(const char *msg) : runtime_error(msg){}; | ||
using TmxException::TmxException; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters