mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
24 lines
542 B
C#
24 lines
542 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace SevenZipExtractor
|
|
{
|
|
public class SevenZipException : Exception
|
|
{
|
|
public SevenZipException()
|
|
{
|
|
}
|
|
|
|
public SevenZipException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public SevenZipException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
|
|
protected SevenZipException(SerializationInfo info, StreamingContext context) : base(info, context)
|
|
{
|
|
}
|
|
}
|
|
} |