123456789_123456789_123456789_123456789_123456789_

Exception: Zlib::InProgressError

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Error, ::StandardError, Exception
Instance Chain:
self, Error, ::StandardError, Exception
Inherits: Zlib::Error
Defined in: ext/zlib/zlib.c,
ext/zlib/zlib.c

Overview

Subclass of Error. This error is raised when the zlib stream is currently in progress.

For example:

inflater = Zlib::Inflate.new
inflater.inflate(compressed) do
  inflater.inflate(compressed) # Raises Zlib::InProgressError
end