DRDE/ACTK1_0/session/FactoryConfigurationExcepti...

14 lines
375 B
C++
Raw Permalink Normal View History

#ifndef __FACTORY_CONFIGURATION_EXCEPTION_HPP
#define __FACTORY_CONFIGURATION_EXCEPTION_HPP
#include "session/ConfigurationException.hpp"
class FactoryConfigurationException : public ConfigurationException
{
public:
FactoryConfigurationException(const std::string &msg)
: ConfigurationException(msg) {};
};
#endif // __FACTORY_CONFIGURATION_EXCEPTION_HPP