PIBD-11_Basalov_A.D_Simple/ProjectElectricLocomotive/Exceptions/DrawningEqutablesException.cs
2024-05-12 10:58:04 +03:00

21 lines
736 B
C#
Raw Permalink 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;
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) { }
}
}