PIBD14-BOYKO-M.S.SuperEasyS.../ProjectElectroTrans/Exceptions/CollectionInfoException.cs

13 lines
487 B
C#
Raw Permalink Normal View History

2024-04-25 02:31:55 +04:00
using System.Runtime.Serialization;
namespace ProjectElectroTrans.Exceptions;
public class CollectionInfoException : Exception
{
public CollectionInfoException() : base() { }
public CollectionInfoException(string message) : base(message) { }
public CollectionInfoException(string message, Exception exception) :
base(message, exception) { }
protected CollectionInfoException(SerializationInfo info, StreamingContext
contex) : base(info, contex) { }
}