dsdecmp/CSharp/DSDecmp/Exceptions/InputTooLargeException.cs

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.") { }
}
}