C# Class GARCTool.NotEnoughDataException

An exception that is thrown by the decompression functions when there is not enough data available in order to properly decompress the input.
Inheritance: System.IO.IOException
Mostrar archivo Open project: kwsch/GARCTool

Public Methods

Method Description
NotEnoughDataException ( long currentOutSize, long totalOutSize ) : System

Creates a new NotEnoughDataException.

Method Details

NotEnoughDataException() public method

Creates a new NotEnoughDataException.
public NotEnoughDataException ( long currentOutSize, long totalOutSize ) : System
currentOutSize long The actual number of written bytes.
totalOutSize long The desired number of written bytes.
return System