Drive Engine  1.0.0
Plateforme de reconstruction 3D
IPreconditionException.h
1 // Copyright (c) 2015. All rights reserved to DriveEngine Team.
2 
3 #pragma once
4 
5 #include "IException.h"
6 
7 namespace DriveEngine
8 {
13  {
14  public:
20  virtual const char* GetErrorMessage() const = 0;
21  };
22 }
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
Interface for every exception signalling precondition errors.
Definition: IPreconditionException.h:12