C# 클래스 ThemeEditor.Common.Compression.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.
상속: System.Exception
파일 보기 프로젝트 열기: usagirei/3DS-Theme-Editor

공개 메소드들

메소드 설명
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.

메소드 상세

TooMuchInputException() 공개 메소드

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.
리턴 System