15 #ifndef VISIONTRANSFER_EXCEPTIONS_H
16 #define VISIONTRANSFER_EXCEPTIONS_H
20 namespace visiontransfer {
25 class ProtocolException:
public std::runtime_error {
27 ProtocolException(std::string msg): std::runtime_error(msg) {}
33 class TransferException:
public std::runtime_error {
35 TransferException(std::string msg): std::runtime_error(msg) {}