diff --git a/src/liboncilla/exceptions/NotImplementedError.h b/src/liboncilla/exceptions/NotImplementedError.h index eb698ad..43b29ee 100644 --- a/src/liboncilla/exceptions/NotImplementedError.h +++ b/src/liboncilla/exceptions/NotImplementedError.h @@ -1,29 +1,29 @@ /* * NotImplementedError.h * * Created on: Jan 18, 2013 * Author: tuleu */ #ifndef LIBONCILLA_NOTIMPLEMENTEDERROR_H_ #define LIBONCILLA_NOTIMPLEMENTEDERROR_H_ #include "UnavailableInterfaceError.h" namespace rci { namespace oncilla { -class NotImplementedError : UnavailableInterfaceError { +class NotImplementedError : public UnavailableInterfaceError { public: NotImplementedError(const std::string & component, const std::string & methodName, const std::string & className = ""); virtual ~NotImplementedError() throw(); private : static const char * INFO_NOTICE; }; } /* namespace oncilla */ } /* namespace rci */ #endif /* NOTIMPLEMENTEDERROR_H_ */