PST SDK  5.0.1.0-acae3ae
TrackerExceptions.h File Reference
#include <string>
+ Include dependency graph for TrackerExceptions.h:

Go to the source code of this file.

Classes

class  PSTech::TrackerException
 Generic tracker exception. More...
 
class  PSTech::InvalidDataException
 
class  PSTech::NotFoundException
 
class  PSTech::AlreadyExistsException
 
class  PSTech::IOException
 
class  PSTech::OutOfRangeException
 
class  PSTech::NotSupportedException
 
class  PSTech::NotInitializedException
 
class  PSTech::HttpException
 

Namespaces

 PSTech
 

Macros

#define DECLARE_TRACKER_EXCEPTION(name)
 

Macro Definition Documentation

◆ DECLARE_TRACKER_EXCEPTION

#define DECLARE_TRACKER_EXCEPTION (   name)
Value:
class name : public PSTech::TrackerException \
{ \
public: \
name(const std::string& what) : PSTech::TrackerException(what) {} \
name(const std::string& function, int line, const std::string& what) : PSTech::TrackerException(function, line, what) {}\
}
Definition: pst-sdk.h:31
Generic tracker exception.
Definition: TrackerExceptions.h:26