class ExceptionForMatrix::ErrOperationNotImplemented

Public Class Methods

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