#include <stdexcept>#include <strstream>#include "jic/log/trazas.hpp"Include dependency graph for CjicException.hpp:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Compounds | |
| class | CjicException |
Defines | |
| #define | CjicException_h 1 |
| #define | THROW(Excepcion, Descripcion) |
|
|
|
|
|
Value: { \
std::strstream * info = new std::strstream; \
(*info) << #Excepcion << ": " << Descripcion << std::ends; \
char *cadena = info->str(); \
Excepcion exc(cadena); \
delete cadena; \
delete info; \
SUCESO(exc.what()); \
throw(exc); \
}
|
1.3-rc3