mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-13 13:35:28 +00:00
17 lines
395 B
C#
17 lines
395 B
C#
using System;
|
|
|
|
namespace SharpCompress.Common
|
|
{
|
|
public class MultiVolumeExtractionException : ExtractionException
|
|
{
|
|
public MultiVolumeExtractionException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public MultiVolumeExtractionException(string message, Exception inner)
|
|
: base(message, inner)
|
|
{
|
|
}
|
|
}
|
|
} |