00001 /* 00002 * MessageFormatException.h 00003 * semaine 00004 * 00005 * Created by Marc Schröder on 09.09.08. 00006 * Copyright 2008 DFKI GmbH. All rights reserved. 00007 * 00008 */ 00009 00010 #ifndef SEMAINE_CMS_EXCEPTIONS_MESSAGEFORMATEXCEPTION_H 00011 #define SEMAINE_CMS_EXCEPTIONS_MESSAGEFORMATEXCEPTION_H 00012 00013 #include <semaine/config.h> 00014 #include <semaine/cms/exceptions/SEMAINEException.h> 00015 00016 namespace semaine { 00017 namespace cms { 00018 namespace exceptions { 00019 00020 00021 class MessageFormatException : public SEMAINEException 00022 { 00023 public: 00024 inline MessageFormatException(const std::string & text) throw() : 00025 SEMAINEException(text) 00026 { 00027 } 00028 00029 inline ~MessageFormatException() throw() {} 00030 }; 00031 00032 00033 } // namespace exceptions 00034 } // namespace cms 00035 } // namespace semaine 00036 00037 00038 00039 #endif 00040