dir structure

This commit is contained in:
Tristan Krause 2019-05-15 10:51:39 +02:00
parent 30d8aefce3
commit 2c4f2653cd
32 changed files with 7 additions and 4 deletions

View file

@ -1,33 +0,0 @@
#ifndef USARTEXCEPTION_H
#define USARTEXCEPTION_H
#include <exception>
#include <string>
// SOURCE: https://stackoverflow.com/a/8152888
class USARTException: public std::exception
{
public:
explicit USARTException(const char* message) : msg(message)
{
}
explicit USARTException(const std::string& message) : msg(message)
{
}
virtual ~USARTException() throw ()
{
}
virtual const char* what() const throw ()
{
return msg.c_str();
}
protected:
std::string msg;
};
#endif // USARTEXCEPTION_H