class ExceptionForMatrix::ErrOperationNotDefined

Parent:
StandardError

Public Class Methods

new(vals) Show source
# File lib/matrix.rb, line 39
def initialize(vals)
  if vals.is_a?(Array)
    super("Operation(#{vals[0]}) can't be defined: #{vals[1]} op #{vals[2]}")
  else
    super(vals)
  end
end
Calls superclass method Exception::new

Ruby Core © 1993–2020 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.