mirror of
https://github.com/Barubary/dsdecmp.git
synced 2024-11-14 23:05:13 +01:00
14 lines
340 B
C#
14 lines
340 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace DSDecmp
|
|||
|
{
|
|||
|
public class InputTooLargeException : Exception
|
|||
|
{
|
|||
|
public InputTooLargeException()
|
|||
|
: base("The compression ratio is not high enough to fit the input "
|
|||
|
+ "in a single compressed file.") { }
|
|||
|
}
|
|||
|
}
|