mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-11 11:37:18 +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)
|
|
{
|
|
}
|
|
}
|
|
}
|