summaryrefslogtreecommitdiffhomepage
path: root/mrblib/error.rb
diff options
context:
space:
mode:
Diffstat (limited to 'mrblib/error.rb')
-rw-r--r--mrblib/error.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/mrblib/error.rb b/mrblib/error.rb
new file mode 100644
index 000000000..88da1825c
--- /dev/null
+++ b/mrblib/error.rb
@@ -0,0 +1,9 @@
+#
+# Exception
+#
+class Exception
+ # 15.2.22.4.1
+ def self.exception(*args, &block)
+ self.new(*args, &block)
+ end
+end