using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace DSDecmp
{
///
/// An exception thrown by the compression or decompression function, indicating that the
/// given input length was too large for the given input stream.
///
public class StreamTooShortException : EndOfStreamException
{
///
/// Creates a new exception that indicates that the stream was shorter than the given input length.
///
public StreamTooShortException()
: base("The end of the stream was reached "
+ "before the given amout of data was read.")
{ }
}
}