Sic04/Yalv/YALV.Core/Exceptions/NotValidValueException.cs

16 lines
485 B
C#

using System;
using System.Runtime.Serialization;
namespace YALV.Core.Exceptions
{
public class NotValidValueException : Exception
{
public NotValidValueException() { }
public NotValidValueException(string message) : base(message) { }
public NotValidValueException(string message, Exception inner) : base(message, inner) { }
protected NotValidValueException(SerializationInfo info, StreamingContext context) : base(info, context) { }
}
}