12 lines
220 B
C#
12 lines
220 B
C#
using System;
|
|
|
|
namespace SharpCompress.Common
|
|
{
|
|
internal class CryptographicException : Exception
|
|
{
|
|
public CryptographicException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
} |