notimplemented.h
Go to the documentation of this file.
1 #ifndef DNAI_EXCEPTION_NOT_IMPLEMENTED_H
2 #define DNAI_EXCEPTION_NOT_IMPLEMENTED_H
3 
5 
6 #include <QDebug>
7 namespace dnai
8 {
9  namespace exceptions
10  {
11  class NotImplemented : public Exception
12  {
13  public:
14  NotImplemented() : Exception("Function not yet implemented") {
15  qCritical() << "Function not yet implemented";
16  }
17  };
18  }
19 }
20 
21 #endif //DNAI_EXCEPTION_NOT_IMPLEMENTED_H
NotImplemented()
Definition: notimplemented.h:14
Base class for DNAI Exception.
Definition: exception.h:12
Definition: api.h:13
Definition: notimplemented.h:11