Files
OpenAuth.Net/OpenAuth.Domain/Utility/ValueObjectIsInvalidException.cs

13 lines
236 B
C#
Raw Normal View History

using System;
namespace OpenAuth.Domain.Utility
{
public class ValueObjectIsInvalidException : Exception
{
public ValueObjectIsInvalidException(string message)
: base(message)
{
}
}
}