17 lines
435 B
C#
17 lines
435 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ComponentProgramming.Exceptions
|
|
{
|
|
public class WrongRangeException : Exception
|
|
{
|
|
public WrongRangeException() { }
|
|
public WrongRangeException(string message) : base(message) { }
|
|
public WrongRangeException(string message, Exception inner) : base(message, inner) { }
|
|
}
|
|
|
|
}
|