mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-15 05:26:01 +00:00
18 lines
354 B
C#
18 lines
354 B
C#
|
|
using System;
|
|
|
|
namespace SharpCompress.Common
|
|
{
|
|
public class ExtractionException : Exception
|
|
{
|
|
public ExtractionException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
public ExtractionException(string message, Exception inner)
|
|
: base(message, inner)
|
|
{
|
|
}
|
|
}
|
|
}
|