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) { } } }