mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-25 16:34:45 +00:00
13 lines
336 B
C#
13 lines
336 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) { }
|
|
}
|
|
}
|