Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/povilasb/luaexception
https://github.com/povilasb/luaexception
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/povilasb/luaexception
- Owner: povilasb
- Created: 2013-08-22T09:29:03.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-08-22T09:41:18.000Z (about 11 years ago)
- Last Synced: 2024-04-16T03:42:33.481Z (7 months ago)
- Language: Lua
- Size: 113 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
INTRODUCTION
============LuaExceptions is a library that provides higher level functions to handle
exceptions in lua. It uses native lua functions pcall and error.
It's approach is to provide a similar interface to exception mechanisms
that are native in such languages as Java and C++.
LuaException uses try-catch-finally statements.GETTING STARTED
===============1. You must initialize LuaClass submodule with:
git submodule init
git submodule update2. Run "make" to get a list of samples.
3. "make sample-name" to run a sample.
TODO
====[ ] Print stack trace, when exception is rethrown in finally.