comparison src/luan/lib/LuanRuntimeException.java @ 48:64ecb7a3aad7

rename Lua to Luan git-svn-id: https://luan-java.googlecode.com/svn/trunk@49 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Fri, 28 Dec 2012 03:29:12 +0000
parents
children
comparison
equal deleted inserted replaced
47:659c7139e903 48:64ecb7a3aad7
1 package luan.lib;
2
3 import luan.LuanException;
4
5
6 public final class LuanRuntimeException extends RuntimeException {
7 public LuanRuntimeException(LuanException e) {
8 super(e);
9 }
10 }