using System;
|
|
|
|
namespace BWP.ABCClient.Exceptions
|
|
{
|
|
public class RSAException : Exception
|
|
{
|
|
public RSAException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|