Thrown when Lua returns a yield and it should not have. More...
#include <exception.h>
Public Member Functions | |
ScriptLuaYieldException (const String &TypeName, const String &Message, const String &SrcFunction, const String &SrcFile, const Whole &FileLine) | |
Class constructor. More... | |
ScriptLuaYieldException (const String &Message, const String &SrcFunction, const String &SrcFile, const Whole &FileLine) | |
Class constructor. More... | |
virtual | ~ScriptLuaYieldException () throw () |
Class destructor. | |
virtual Whole | GetExceptionCode () const throw () |
Gets the exception code for this exception. More... | |
Public Member Functions inherited from Mezzanine::ScriptLuaException | |
ScriptLuaException (const String &TypeName, const String &Message, const String &SrcFunction, const String &SrcFile, const Whole &FileLine) | |
Class constructor. More... | |
ScriptLuaException (const String &Message, const String &SrcFunction, const String &SrcFile, const Whole &FileLine) | |
Class constructor. More... | |
virtual | ~ScriptLuaException () throw () |
Class destructor. | |
Public Member Functions inherited from Mezzanine::ScriptException | |
ScriptException (const String &TypeName, const String &Message, const String &SrcFunction, const String &SrcFile, const Whole &FileLine) | |
Class constructor. More... | |
ScriptException (const String &Message, const String &SrcFunction, const String &SrcFile, const Whole &FileLine) | |
Class constructor. More... | |
virtual | ~ScriptException () throw () |
Class destructor. | |
Public Member Functions inherited from Mezzanine::Exception | |
Exception (const String &TypeName, const String &Message, const String &SrcFunction, const String &SrcFile, const Whole &FileLine) | |
Simple Constructor. More... | |
virtual | ~Exception () throw () |
Class destructor. | |
String | GetCompleteMessage () const throw () |
Constructs the complete message from all the information provided about the exception. More... | |
ConstString & | GetExceptionTypeName () const throw () |
Gets the name of the exception type. More... | |
ConstString & | GetFile () const throw () |
Gets the file of the exception. More... | |
ConstString & | GetFunction () const throw () |
Gets the function of the exception. More... | |
const Whole & | GetLine () const throw () |
Gets the line number of the exception. More... | |
virtual String | what () throw () |
Retrieves the error message. More... | |
Static Public Attributes | |
static const Whole | ExceptionCode = Exception::SCRIPT_EXCEPTION_LUA_YIELD |
Thrown when Lua returns a yield and it should not have. | |
Static Public Attributes inherited from Mezzanine::ScriptLuaException | |
static const Whole | ExceptionCode = Exception::SCRIPT_EXCEPTION_LUA |
Thrown when an unknown error happens in a Lua script. | |
Static Public Attributes inherited from Mezzanine::ScriptException | |
static const Whole | ExceptionCode = Exception::SCRIPT_EXCEPTION |
Thrown when an unknown error happens with a script. | |
Thrown when Lua returns a yield and it should not have.
Definition at line 1547 of file exception.h.
|
inline |
Class constructor.
TypeName | The name of this class. |
Message | A basic description of the error. |
SrcFunction | The name of the function from which this originated. |
SrcFile | The name of the file from which this originated. |
FileLine | The line on the named file from which this originated. |
Definition at line 1559 of file exception.h.
|
inline |
Class constructor.
Message | A basic description of the error. |
SrcFunction | The name of the function from which this originated. |
SrcFile | The name of the file from which this originated. |
FileLine | The line on the named file from which this originated. |
Definition at line 1568 of file exception.h.
|
inlinevirtual |
Gets the exception code for this exception.
Reimplemented from Mezzanine::ScriptLuaException.
Definition at line 1576 of file exception.h.