mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-13 13:35:28 +00:00
17 lines
352 B
C#
17 lines
352 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)
|
|
{
|
|
}
|
|
}
|
|
} |