class ChunkyPNG::Canvas

def assert_y!(y)

Throws an exception if the y-coordinate is out of bounds.
def assert_y!(y)
  raise ChunkyPNG::OutOfBounds, "Row index #{y} out of bounds!" unless include_y?(y)
  return true
end