20 lines
605 B
C#
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) { }
|
|
}
|
|
}
|