$search
#include <string>

Go to the source code of this file.
Classes | |
| class | vlr::BaseException |
| struct | vlr::EmptyEx |
| struct | vlr::Ex< t1, t2, t3 > |
| struct | vlr::Ex< EmptyEx, EmptyEx, EmptyEx > |
| struct | vlr::Ex< t1, EmptyEx, EmptyEx > |
| struct | vlr::Ex< t1, t2, EmptyEx > |
| struct | vlr::FileIOEx |
| struct | vlr::InvalidArgumentEx |
| struct | vlr::IOEx |
| struct | vlr::SocketIOEx |
| struct | vlr::ZeroPointerArgumentEx |
Namespaces | |
| namespace | vlr |
Defines | |
| #define | VLRException(str) vlr::Ex<>(__PRETTY_FUNCTION__ + std::string(": ") + str) |
| #define | VLRExceptionLevel1(str, t1) vlr::Ex<t1>(__PRETTY_FUNCTION__ + std::string(": ") + str) |
| #define | VLRExceptionLevel2(str, t1, t2) vlr::Ex<t1, t2>(__PRETTY_FUNCTION__ + std::string(": ") + str) |
| #define | VLRExceptionLevel3(str, t1, t2, t3) vlr::Ex<t1, t2, t3>(__PRETTY_FUNCTION__ + std::string(": ") + str) |
| #define VLRException | ( | str | ) | vlr::Ex<>(__PRETTY_FUNCTION__ + std::string(": ") + str) |
Definition at line 88 of file vlrException.h.
| #define VLRExceptionLevel1 | ( | str, | |||
| t1 | ) | vlr::Ex<t1>(__PRETTY_FUNCTION__ + std::string(": ") + str) |
Definition at line 89 of file vlrException.h.
| #define VLRExceptionLevel2 | ( | str, | |||
| t1, | |||||
| t2 | ) | vlr::Ex<t1, t2>(__PRETTY_FUNCTION__ + std::string(": ") + str) |
Definition at line 90 of file vlrException.h.
| #define VLRExceptionLevel3 | ( | str, | |||
| t1, | |||||
| t2, | |||||
| t3 | ) | vlr::Ex<t1, t2, t3>(__PRETTY_FUNCTION__ + std::string(": ") + str) |
Definition at line 91 of file vlrException.h.