2023-05-07 16:44:15 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "src/Exceptions/Exception.hpp"
|
|
|
|
|
|
2023-08-13 15:47:51 +01:00
|
|
|
namespace Exceptions
|
2023-05-07 16:44:15 +01:00
|
|
|
{
|
|
|
|
|
class DeviceNotFound: public Exception
|
|
|
|
|
{
|
|
|
|
|
public:
|
2024-07-23 21:14:22 +01:00
|
|
|
explicit DeviceNotFound(const std::string& message)
|
|
|
|
|
: Exception(message)
|
|
|
|
|
{}
|
2023-05-07 16:44:15 +01:00
|
|
|
};
|
|
|
|
|
}
|