20 lines
605 B
C#
Raw Normal View History

2024-09-05 09:32:21 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace COP.Exceptions
{
[Serializable]
2024-09-05 15:05:04 +04:00
public class NotIncludedInRangeException: Exception
2024-09-05 09:32:21 +04:00
{
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) { }
}
}