class TTY::Table::TupleMissing

Raised when reading non-existent element from a table

Attributes

i[R]
j[R]

Public Class Methods

new(i, j) click to toggle source
Calls superclass method
# File lib/tty/table/error.rb, line 12
def initialize(i, j)
  @i, @j = i, j
  super("element at(#{i},#{j}) not found")
end