rcpp_framework/libs/brynet/net/Exception.hpp

27 lines
561 B
C++
Raw Normal View History

2020-11-24 15:41:18 +01:00
#pragma once
#include <stdexcept>
2021-04-30 16:10:14 +02:00
#include <string>
2020-11-24 15:41:18 +01:00
2021-05-14 17:16:45 +02:00
class ConnectException : public std::runtime_error {
2021-04-30 16:10:14 +02:00
public:
2021-05-14 17:16:45 +02:00
explicit ConnectException(const std::string &message) :
std::runtime_error(message) {
}
2020-11-24 15:41:18 +01:00
2021-05-14 17:16:45 +02:00
explicit ConnectException(const char *message) :
std::runtime_error(message) {
}
2021-04-30 16:10:14 +02:00
};
2020-11-24 15:41:18 +01:00
2021-05-14 17:16:45 +02:00
class BrynetCommonException : public std::runtime_error {
2021-04-30 16:10:14 +02:00
public:
2021-05-14 17:16:45 +02:00
explicit BrynetCommonException(const std::string &message) :
std::runtime_error(message) {
}
2020-11-24 15:41:18 +01:00
2021-05-14 17:16:45 +02:00
explicit BrynetCommonException(const char *message) :
std::runtime_error(message) {
}
2021-04-30 16:10:14 +02:00
};