00001 // $Id: SLNotFoundException.hpp,v 1.1 2004/04/06 12:21:14 mr_lex Exp $ 00002 #ifndef SL_NOT_FOUND_EXCEPTION_HPP 00003 #define SL_NOT_FOUND_EXCEPTION_HPP 00004 00005 #include "segusoland.hpp" 00006 #include "SLString.hpp" 00007 #include "SLException.hpp" 00008 00009 SL_NAMESPACE_BEGIN 00010 00016 class SLNotFoundException : public SLException { 00017 public: 00021 SLNotFoundException(const SLString &message); 00022 00023 protected: 00024 }; // class SLNotFoundException 00025 00026 SL_NAMESPACE_END 00027 #endif // #ifndef SL_NOT_FOUND_EXCEPTION_HPP 00028 // $Log: SLNotFoundException.hpp,v $ 00029 // Revision 1.1 2004/04/06 12:21:14 mr_lex 00030 // NEW: 1st import of SLNotFoundException 00031 // 00032