comparison src/luan/modules/Boot.luan @ 1347:643cf1c37723

move webserver to lib and bug fixes
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 25 Feb 2019 13:02:33 -0700
parents f41919741100
children 8d95711f6615
comparison
equal deleted inserted replaced
1346:efd1c6380f2c 1347:643cf1c37723
216 set_metatable(this,error_mt) 216 set_metatable(this,error_mt)
217 this.java = ex 217 this.java = ex
218 this.get_message = ex.getMessage 218 this.get_message = ex.getMessage
219 this.throw = ex.throwThis 219 this.throw = ex.throwThis
220 this.get_stack_trace_string = ex.getLuanStackTraceString 220 this.get_stack_trace_string = ex.getLuanStackTraceString
221 this.get_java_stack_trace_string = ex.getLuanStackTraceString 221 this.get_java_stack_trace_string = ex.getJavaStackTraceString
222 return this 222 return this
223 end 223 end
224 224
225 225
226 return Boot 226 return Boot