| * $Id: LuaException.java 38 2012-01-04 22:44:15Z andre@naef.com $ |
| * See LICENSE.txt for license terms. |
| * Abstract base class for Lua error conditions. Lua exceptions are unchecked |
| public abstract class LuaException extends RuntimeException { |
| private static final long serialVersionUID = 1L; |
| * Creates a new instance. |
| public LuaException(String msg) { |
| * Creates a new instance. |
| * the cause of this exception |
| public LuaException(String msg, Throwable cause) { |
| * Creates a new instance. |
| * the cause of this exception |
| public LuaException(Throwable cause) { |