using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace ProjectBus.Drawnings; public class DrawningEquitablesException : Exception { public DrawningEquitablesException() : base("Объекты прорисовки одинаковые") { } public DrawningEquitablesException(string message) : base(message) { } public DrawningEquitablesException(string message, Exception exception) : base(message, exception) { } protected DrawningEquitablesException(SerializationInfo info, StreamingContext contex) : base(info, contex) { } }