C# 클래스 ThemeEditor.Common.Compression.NotEnoughDataException

An exception that is thrown by the decompression functions when there is not enough data available in order to properly decompress the input.
상속: System.IO.IOException
파일 보기 프로젝트 열기: usagirei/3DS-Theme-Editor

공개 메소드들

메소드 설명
NotEnoughDataException ( long currentOutSize, long totalOutSize ) : System.IO

Creates a new NotEnoughDataException.

메소드 상세

NotEnoughDataException() 공개 메소드

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