C# Class MineViewer.LuaException

An exception indicating there is a lua compile or run error.
Inheritance: System.Exception
Mostrar archivo Open project: dzamkov/MineViewer Class Usage Examples

Public Properties

Property Type Description
LuaDesc string
Run bool

Public Methods

Method Description
Create ( string Description, bool Runtime ) : LuaException

Creates an exception based on a full error message given by lua.

Method Details

Create() public static method

Creates an exception based on a full error message given by lua.
public static Create ( string Description, bool Runtime ) : LuaException
Description string
Runtime bool
return LuaException

Property Details

LuaDesc public_oe property

Description of the error given by lua.
public string LuaDesc
return string

Run public_oe property

Gets if this error occured while running the lua code.
public bool Run
return bool