mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
eec00ccf60
It overwrote the original definition in src/error.c, line 446.
57 lines
824 B
Ruby
57 lines
824 B
Ruby
# 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
|