21 lines
349 B
C#
21 lines
349 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.Contracts
|
|||
|
{
|
|||
|
public class ValidationException : Exception
|
|||
|
{
|
|||
|
public ValidationException()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public ValidationException(string message)
|
|||
|
: base(message)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|