20 lines
767 B
C#
20 lines
767 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Runtime.Serialization;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace AirFighter
|
||
{
|
||
[Serializable] internal class AirFighterNotFoundException : ApplicationException
|
||
{
|
||
public AirFighterNotFoundException(int i) : base($"Не найден объект по позиции {i}") { }
|
||
public AirFighterNotFoundException() : base() { }
|
||
public AirFighterNotFoundException(string message) : base(message) { }
|
||
public AirFighterNotFoundException(string message, Exception exception) : base(message, exception) { }
|
||
protected AirFighterNotFoundException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
|
||
}
|
||
}
|
||
|