2011-04-05 18:44:41 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace DSDecmp
|
|
|
|
|
{
|
2011-11-13 17:14:45 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 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.
|
|
|
|
|
/// </summary>
|
2011-04-05 18:44:41 +02:00
|
|
|
|
public class TooMuchInputException : Exception
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the number of bytes read by the decompressed to decompress the stream.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long ReadBytes { get; private set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 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.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="readBytes">The number of bytes read by the decompressor.</param>
|
|
|
|
|
/// <param name="totLength">The indicated length of the input stream.</param>
|
|
|
|
|
public TooMuchInputException(long readBytes, long totLength)
|
|
|
|
|
: base("The input contains more data than necessary. Only used 0x"
|
|
|
|
|
+ readBytes.ToString("X") + " of 0x" + totLength.ToString("X") + " bytes")
|
|
|
|
|
{
|
|
|
|
|
this.ReadBytes = readBytes;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|