#include <LuaExceptions.hpp>


Public Member Functions | |
| TypeMismatchError (const std::string &expectedType, const std::string &foundType) | |
| ~TypeMismatchError () throw () | |
| std::string | getExpectedType () const |
| Returns the type that was expected. | |
| std::string | getFoundType () const |
| Returns the type that was actually found. | |
Private Attributes | |
| std::string | expectedType_ |
| The type that was expected. | |
| std::string | foundType_ |
| The type that was actually found. | |
Definition at line 140 of file LuaExceptions.hpp.
| Diluculum::TypeMismatchError::TypeMismatchError | ( | const std::string & | expectedType, | |
| const std::string & | foundType | |||
| ) |
Constructs a TypeMismatchError object.
| expectedType | The type that was expected. | |
| foundType | The type that was actually found. |
| Diluculum::TypeMismatchError::~TypeMismatchError | ( | ) | throw () [inline] |
Destroys a TypeMismatchError object.
Definition at line 156 of file LuaExceptions.hpp.
| std::string Diluculum::TypeMismatchError::getExpectedType | ( | ) | const [inline] |
Returns the type that was expected.
Definition at line 159 of file LuaExceptions.hpp.
References expectedType_.
| std::string Diluculum::TypeMismatchError::getFoundType | ( | ) | const [inline] |
Returns the type that was actually found.
Definition at line 162 of file LuaExceptions.hpp.
References foundType_.
std::string Diluculum::TypeMismatchError::expectedType_ [private] |
The type that was expected.
Definition at line 166 of file LuaExceptions.hpp.
Referenced by getExpectedType().
std::string Diluculum::TypeMismatchError::foundType_ [private] |
The type that was actually found.
Definition at line 169 of file LuaExceptions.hpp.
Referenced by getFoundType().
1.5.9