#include <iostream>
#include "Core/ExceptionHandler.h"
Go to the source code of this file.
◆ DE_ASSERT
| #define DE_ASSERT |
( |
| x, |
|
|
| msg ) |
Value:{ \
if (!(x)) { \
std::cerr << "ASSERTION FAILED: " << msg << "\n" \
<< "File: " << __FILE__ << "\n" \
<< "Line: " << __LINE__ << "\n"; \
} \
}
◆ DE_THROW
| #define DE_THROW |
( |
| code, |
|
|
| msg ) |
Value:
Custom exception class for database-related errors. It includes an error code, message,...
Definition ExceptionHandler.h:34