PIBD-11_Basalov_A.D_Simple/ProjectElectricLocomotive/Exceptions/DrawningEqutablesException.cs

21 lines
736 B
C#
Raw Permalink Normal View History

2024-05-12 11:58:04 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace ProjectElectricLocomotive.Exceptions
{
public class DrawningEqutablesException : Exception
{
public DrawningEqutablesException() : base("Оба объекта прорисовки одинаковые") { }
public DrawningEqutablesException(string message) : base(message) { }
public DrawningEqutablesException(string message, Exception exception) :
base(message, exception)
{ }
protected DrawningEqutablesException(SerializationInfo info, StreamingContext
contex) : base(info, contex) { }
}
}