00001 #ifndef HEADER_RESOURCEEXCEPTION_H 00002 #define HEADER_RESOURCEEXCEPTION_H 00003 00004 #include "BaseException.h" 00005 00006 /** 00007 * Exception about not found resource. 00008 */ 00009 class ResourceException : public BaseException { 00010 public: 00011 ResourceException(const ExInfo &problem) 00012 : BaseException(problem) 00013 {} 00014 }; 00015 00016 #endif