libvisiontransfer
5.0.1
Main Page
Related Pages
Classes
Files
File List
visiontransfer
exceptions.h
1
/*******************************************************************************
2
* Copyright (c) 2017 Nerian Vision Technologies
3
*
4
* Permission is hereby granted, free of charge, to any person obtaining a copy
5
* of this software and associated documentation files (the "Software"), to deal
6
* in the Software without restriction, including without limitation the rights
7
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
* copies of the Software, and to permit persons to whom the Software is
9
* furnished to do so, subject to the following conditions:
10
*
11
* The above copyright notice and this permission notice shall be included in
12
* all copies or substantial portions of the Software.
13
*******************************************************************************/
14
15
#ifndef VISIONTRANSFER_EXCEPTIONS_H
16
#define VISIONTRANSFER_EXCEPTIONS_H
17
18
#include <stdexcept>
19
23
class
ProtocolException
:
public
std::runtime_error {
24
public
:
25
ProtocolException
(std::string msg): std::runtime_error(msg) {}
26
};
27
31
class
TransferException
:
public
std::runtime_error {
32
public
:
33
TransferException
(std::string msg): std::runtime_error(msg) {}
34
};
35
36
#endif
ProtocolException
Exception class that is used for all protocol exceptions.
Definition:
exceptions.h:23
TransferException
Exception class that is used for all transfer exceptions.
Definition:
exceptions.h:31