Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members  

CjicException.hpp File Reference

#include <stdexcept>
#include <strstream>
#include "jic/log/trazas.hpp"

Include dependency graph for CjicException.hpp:

Include dependency graph

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

Included by dependency graph

Go to the source code of this file.

Compounds

class  CjicException

Defines

#define CjicException_h   1
#define THROW(Excepcion, Descripcion)


Define Documentation

#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); \
}


Generated on Wed Mar 5 21:32:21 2003 for JIC by doxygen1.3-rc3