00001 /*======================================================================= 00002 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00003 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00004 *** *** 00005 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00006 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00007 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00008 *** *** 00009 *** RESTRICTED RIGHTS LEGEND *** 00010 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00011 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00012 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00013 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00014 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00015 *** *** 00016 *** COPYRIGHT (C) 1996-2017 BY FEI S.A.S, *** 00017 *** BORDEAUX, FRANCE *** 00018 *** ALL RIGHTS RESERVED *** 00019 **=======================================================================*/ 00020 /*======================================================================= 00021 ** Author : VSG (MMM YYYY) 00022 **=======================================================================*/ 00023 #ifndef _MIABSTRACTMETHODERROR_H 00024 #define _MIABSTRACTMETHODERROR_H 00025 00026 #include <Inventor/STL/iostream> 00027 #include <Inventor/STL/sstream> 00028 #include <Inventor/STL/string> 00029 00039 class MiAbstractMethodError : public std::exception 00040 { 00041 public: 00045 MiAbstractMethodError(std::string methodName) 00046 { 00047 std::stringstream errorStream; 00048 errorStream << "method " << methodName << " is not implemented or not consistent!"; 00049 m_error = errorStream.str(); 00050 } 00051 00055 std::string getError() 00056 { 00057 return m_error; 00058 } 00059 00063 virtual const char* what() const throw () 00064 { 00065 return m_error.c_str(); 00066 } 00067 00068 ~MiAbstractMethodError () throw () 00069 { 00070 } 00071 00072 private: 00073 std::string m_error; 00074 00075 }; 00076 00077 #endif 00078 00079 00080