#include <exception.h>
Public Member Functions | |
| incompatible_attribute_type_exception (std::string name, std::string type_name, std::string expected_type_name) | |
Data Fields | |
| std::string | name |
| std::string | type_name |
| std::string | expected_type_name |
Definition at line 43 of file exception.h.
| mesh3d::incompatible_attribute_type_exception::incompatible_attribute_type_exception | ( | std::string | name, | |
| std::string | type_name, | |||
| std::string | expected_type_name | |||
| ) | [inline] |
Definition at line 45 of file exception.h.
00050 { 00051 this->name = name; 00052 this->type_name = type_name; 00053 this->expected_type_name = expected_type_name; 00054 }
Definition at line 55 of file exception.h.
Definition at line 56 of file exception.h.
Definition at line 57 of file exception.h.
1.6.3