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