Mercurial Hosting > luan
view core/src/luan/LuanRuntimeException.java @ 462:2e79b47d02a2
remove all command line options;
add add_extension boolean arg to scheme fns;
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 06 May 2015 16:54:20 -0600 |
parents | 3dcb0f9bee82 |
children |
line wrap: on
line source
package luan; public final class LuanRuntimeException extends RuntimeException { public LuanRuntimeException(LuanException e) { super(e); } }