23 lines
397 B
C#
23 lines
397 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Contracts.Exceptions
|
|||
|
{
|
|||
|
public class AccountException : Exception
|
|||
|
{
|
|||
|
public AccountException()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public AccountException(string message) : base(message)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public AccountException(string message, Exception inner) : base(message, inner)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|