Files
js/external/NetworkException.cpp
T

7 lines
121 B
C++
Raw Permalink Normal View History

#include "NetworkException.h"
NetworkException::NetworkException(const char *error)
: std::runtime_error(error)
{
}