mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-15 13:35:25 +00:00
12 lines
246 B
C#
12 lines
246 B
C#
|
|
namespace SharpCompress.Common
|
|
{
|
|
public class MultipartStreamRequiredException : ExtractionException
|
|
{
|
|
public MultipartStreamRequiredException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|