Files
mRemoteNG/mRemoteV1/Security/EncryptionException.cs
2016-11-11 16:30:22 -05:00

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)
{
}
}
}