00001 #ifndef HEADER_IMGEXCEPTION_H 00002 #define HEADER_IMGEXCEPTION_H 00003 00004 #include "BaseException.h" 00005 00006 /** 00007 * Exception about SDL_image fail. 00008 */ 00009 class ImgException : public BaseException { 00010 public: 00011 ImgException(const ExInfo &problem); 00012 }; 00013 00014 #endif