CutModelException.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef __CutModelExceptionH__
00022 #define __CutModelExceptionH__
00023
00024 #include <iostream>
00025 #include <vector>
00026
00027
00028 class CutModelException : public std::exception{
00029
00030 public:
00031 CutModelException(std::string cause);
00032 ~CutModelException() throw();
00033
00034 std::string getCause(){
00035 return _cause;
00036 }
00037
00038 private:
00039
00040 std::string _cause;
00041
00042 };
00043
00044 #endif