зеркало из https://github.com/github/ruby.git
Support argument for ErrNotRegular
This commit is contained in:
Родитель
0c59bfae0a
Коммит
2f66c443d7
|
@ -28,8 +28,12 @@ module ExceptionForMatrix # :nodoc:
|
|||
end
|
||||
|
||||
class ErrNotRegular < StandardError
|
||||
def initialize
|
||||
super("Not Regular Matrix")
|
||||
def initialize(val = nil)
|
||||
if val
|
||||
super(val)
|
||||
else
|
||||
super("Not Regular Matrix")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче