class ChunkyPNG::Canvas

def assert_y!(y)

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