17 lines
338 B
C#
17 lines
338 B
C#
|
using System;
|
|||
|
|
|||
|
namespace SharpCompress.Common
|
|||
|
{
|
|||
|
internal class ExtractionException : Exception
|
|||
|
{
|
|||
|
public ExtractionException(string message)
|
|||
|
: base(message)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public ExtractionException(string message, Exception inner)
|
|||
|
: base(message, inner)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|