class ExceptionForMatrix::ErrOperationNotImplemented

Public Class Methods

new(vals) click to toggle source
Calls superclass method
# File matrix-0.4.2/lib/matrix.rb, line 49
def initialize(vals)
  super("Sorry, Operation(#{vals[0]}) not implemented: #{vals[1]} op #{vals[2]}")
end