class ChunkyPNG::Chunk::End

def self.read(type, content)

def self.read(type, content)
  raise 'The IEND chunk should be empty!' if content != ''
  self.new
end

def content

def content
  ''
end

def initialize

def initialize
  super('IEND')
end