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 NoRangeException : Exception
|
2024-09-05 09:32:21 +04:00
|
|
|
|
{
|
|
|
|
|
public NoRangeException() : base() { }
|
|
|
|
|
public NoRangeException(string message) : base(message) { }
|
|
|
|
|
public NoRangeException(string message, Exception exception) : base(message, exception) { }
|
|
|
|
|
protected NoRangeException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
|
|
|
|
|
}
|
|
|
|
|
}
|