Drive Engine  1.0.0
Plateforme de reconstruction 3D
IException.h
1 // Copyright (c) 2015. All rights reserved to DriveEngine Team.
2 
3 #pragma once
4 
5 namespace DriveEngine
6 {
14  class IException
15  {
16  public:
22  virtual const char* GetErrorMessage() const = 0;
23  };
24 
28  typedef void(*ErrorHandler)(const IException&);
29 }
virtual const char * GetErrorMessage() const =0
Gets message of error.
Interface for every exception related to the framework.
Definition: IException.h:14
Definition: DefaultCalibrationInfoList.h:12