2024-09-05 15:05:04 +04:00

20 lines
605 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: Exception
{
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) { }
}
}