mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-11 11:37:18 +00:00
13 lines
231 B
C#
13 lines
231 B
C#
using System;
|
|
|
|
namespace SharpCompress.Common
|
|
{
|
|
public class CryptographicException : Exception
|
|
{
|
|
public CryptographicException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|