mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-11-08 02:14:44 +08:00
13 lines
236 B
C#
13 lines
236 B
C#
using System;
|
|
|
|
namespace OpenAuth.Domain.Utility
|
|
{
|
|
public class ValueObjectIsInvalidException : Exception
|
|
{
|
|
public ValueObjectIsInvalidException(string message)
|
|
: base(message)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |