Make compile for j2me

This commit is contained in:
James Roseborough
2007-11-15 01:31:50 +00:00
parent abad119a5c
commit 549c35aa59

View File

@@ -53,18 +53,6 @@ public class LuaErrorException extends RuntimeException {
* and with the default message. * and with the default message.
*/ */
public LuaErrorException(Throwable cause) { public LuaErrorException(Throwable cause) {
super(DEFAULT_MESSAGE, cause); super(DEFAULT_MESSAGE+": "+cause);
} }
/**
* Construct a LuaErrorException in response to a Throwable that was caught
* and with a specific message.
*
* @param message message to supply
* @param cause
*/
public LuaErrorException(String message, Throwable cause) {
super(message, cause);
}
} }