2024-09-05 09:32:21 +04:00

20 lines
616 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace COP.Exceptions
{
[Serializable]
public class NotIncludedInRangeException: ApplicationException
{
public NotIncludedInRangeException() : base() { }
public NotIncludedInRangeException(string message) : base(message) { }
public NotIncludedInRangeException(string message, Exception exception) : base(message, exception) { }
protected NotIncludedInRangeException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
}
}