mirror of
https://github.com/Barubary/dsdecmp.git
synced 2024-11-16 23:59:25 +01:00
d64137221a
To keep the base program mobile, all native NDS formats do not require plugins. The 8-bit Huffman format cannot be used to compress at the moment; thanks to CUE a bug has been found where the offset-field of a node overflows, corrupting the compressed file.
33 lines
1.3 KiB
C#
33 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace DSDecmp
|
|
{
|
|
/// <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>
|
|
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;
|
|
}
|
|
}
|
|
}
|