C# Class GARCTool.TooMuchInputException

An exception indication that the input has more data than required in order to decompress it. This may indicate that more sub-files are present in the file.
Inheritance: System.Exception
Mostrar archivo Open project: kwsch/GARCTool

Public Methods

Method Description
TooMuchInputException ( long readBytes, long totLength ) : System

Creates a new exception indicating that the input has more data than necessary for decompressing th stream. It may indicate that other data is present after the compressed stream.

Method Details

TooMuchInputException() public method

Creates a new exception indicating that the input has more data than necessary for decompressing th stream. It may indicate that other data is present after the compressed stream.
public TooMuchInputException ( long readBytes, long totLength ) : System
readBytes long The number of bytes read by the decompressor.
totLength long The indicated length of the input stream.
return System