00001 /* 00002 * SystemConfigurationException.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_SYSTEMCONFIGURATIONEXCEPTION_H 00011 #define SEMAINE_CMS_EXCEPTIONS_SYSTEMCONFIGURATIONEXCEPTION_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 SystemConfigurationException : public SEMAINEException 00022 { 00023 public: 00024 inline SystemConfigurationException(const std::string & text) throw() : 00025 SEMAINEException(text) 00026 { 00027 } 00028 00029 inline ~SystemConfigurationException() throw() {} 00030 00031 }; 00032 00033 00034 } // namespace exceptions 00035 } // namespace cms 00036 } // namespace semaine 00037 00038 00039 00040 #endif 00041