comparison src/luan/LuaException.java @ 37:8a57ebfdfd78

add JavaLib git-svn-id: https://luan-java.googlecode.com/svn/trunk@38 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Thu, 20 Dec 2012 02:36:07 +0000
parents 4da26b11d12a
children e3624b7cd603
comparison
equal deleted inserted replaced
36:2a35154aec14 37:8a57ebfdfd78
5 5
6 public LuaException(String msg) { 6 public LuaException(String msg) {
7 super(msg); 7 super(msg);
8 } 8 }
9 9
10 public LuaException(Exception e) {
11 super(e);
12 }
13
10 } 14 }