summaryrefslogtreecommitdiffhomepage
path: root/mrblib/10error.rb
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2016-08-19 14:10:23 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2016-08-19 14:10:23 +0900
commitb2fceae461c8c266136cd881ce7969a05061cada (patch)
treeb28460f4f4a5bb7bdc117b91960d2ec7ff9987ac /mrblib/10error.rb
parent67ad1ff11e8f32fda5c5ee401996d88ef6e0657e (diff)
downloadmruby-b2fceae461c8c266136cd881ce7969a05061cada.tar.gz
mruby-b2fceae461c8c266136cd881ce7969a05061cada.zip
renamed class.rb and error.rb to ensure they are read first; ref #3197
Diffstat (limited to 'mrblib/10error.rb')
-rw-r--r--mrblib/10error.rb56
1 files changed, 56 insertions, 0 deletions
diff --git a/mrblib/10error.rb b/mrblib/10error.rb
new file mode 100644
index 000000000..2674af7a2
--- /dev/null
+++ b/mrblib/10error.rb
@@ -0,0 +1,56 @@
+# ISO 15.2.24
+class ArgumentError < StandardError
+end
+
+# ISO 15.2.25
+class LocalJumpError < StandardError
+end
+
+# ISO 15.2.26
+class RangeError < StandardError
+end
+
+class FloatDomainError < RangeError
+end
+
+# ISO 15.2.26
+class RegexpError < StandardError
+end
+
+# ISO 15.2.29
+class TypeError < StandardError
+end
+
+# ISO 15.2.31
+class NameError < StandardError
+ attr_accessor :name
+
+ def initialize(message=nil, name=nil)
+ @name = name
+ super(message)
+ end
+end
+
+# ISO 15.2.32
+class NoMethodError < NameError
+ attr_reader :args
+
+ def initialize(message=nil, name=nil, args=nil)
+ @args = args
+ super message, name
+ end
+end
+
+# ISO 15.2.33
+class IndexError < StandardError
+end
+
+class KeyError < IndexError
+end
+
+class NotImplementedError < ScriptError
+end
+
+class StopIteration < IndexError
+ attr_accessor :result
+end