Exception: ExceptionForMatrix::ErrNotRegular
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
StandardError
|
|
Instance Chain:
self,
StandardError
|
|
Inherits: |
StandardError
|
Defined in: | lib/matrix.rb |
Class Method Summary
- .new(val = nil) ⇒ ErrNotRegular constructor
Constructor Details
.new(val = nil) ⇒ ErrNotRegular
# File 'lib/matrix.rb', line 29
def initialize(val = nil) if val super(val) else super("Not Regular Matrix") end end