PIbd-23_Vrazhkin_S_A_Electr.../lab1/Exceptions/LocoNotFoundException.cs
2023-11-28 13:43:14 +04:00

14 lines
596 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Runtime.Serialization;
namespace ElectricLocomotive.Exceptions;
public class LocoNotFoundException : ApplicationException
{
public LocoNotFoundException(int i) : base($"Не найден объект попозиции {i}") { }
public LocoNotFoundException() : base() { }
public LocoNotFoundException(string message) : base(message) { }
public LocoNotFoundException(string message, Exception exception) :
base(message, exception) { }
protected LocoNotFoundException(SerializationInfo info,
StreamingContext contex) : base(info, contex) { }
}