2015-10-28 03:21:28 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdexcept>
|
|
|
|
|
2016-08-02 05:14:09 +08:00
|
|
|
#include "utils/exceptions/basic_exception.hpp"
|
|
|
|
|
|
|
|
namespace io
|
|
|
|
{
|
|
|
|
|
|
|
|
class NetworkError : public BasicException
|
2015-10-28 03:21:28 +08:00
|
|
|
{
|
|
|
|
public:
|
2016-08-02 05:14:09 +08:00
|
|
|
using BasicException::BasicException;
|
2015-10-28 03:21:28 +08:00
|
|
|
};
|
|
|
|
|
2016-08-02 05:14:09 +08:00
|
|
|
}
|