diff options
Diffstat (limited to 'lux-scheme')
-rw-r--r-- | lux-scheme/source/program.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lux-scheme/source/program.lux b/lux-scheme/source/program.lux index a4524eff8..82b66ec9d 100644 --- a/lux-scheme/source/program.lux +++ b/lux-scheme/source/program.lux @@ -230,12 +230,12 @@ (undefined)) )) -(exception: (unknown_kind_of_host_object {object java/lang/Object}) +(exception: (unknown_kind_of_host_object [object java/lang/Object]) (exception.report ["Class" (java/lang/Object::toString (java/lang/Object::getClass object))] ["Object" (java/lang/Object::toString object)])) -(exception: (cannot_apply_a_non_function {object java/lang/Object}) +(exception: (cannot_apply_a_non_function [object java/lang/Object]) (exception.report ["Class" (java/lang/Object::toString (java/lang/Object::getClass object))] ["Object" (java/lang/Object::toString object)])) |