mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
17 lines
374 B
C#
17 lines
374 B
C#
using System;
|
|
|
|
|
|
namespace mRemoteNG.Security
|
|
{
|
|
[Serializable]
|
|
public class EncryptionException : Org.BouncyCastle.Security.EncryptionException
|
|
{
|
|
public EncryptionException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public EncryptionException(string message, Exception exception) : base(message, exception)
|
|
{
|
|
}
|
|
}
|
|
} |