MC_exception.hpp
Go to the documentation of this file.00001
00002 #ifndef _MC_EXCEPTION_HPP_
00003 #define _MC_EXCEPTION_HPP_
00004
00005 #include <iostream>
00006
00007 namespace mesh_conv
00008 {
00009 namespace exception
00010 {
00012 class MC_exception
00013 {
00014 public:
00015
00016 MC_exception(const std::string& _message):message(_message){}
00017 const std::string& info() const{return message;}
00018
00019 private:
00020 std::string message;
00021 };
00022
00023
00024 }
00025 }
00026
00027 #endif