using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace ProjectStormtrooper.Exceptions; /// /// Класс, описывающий ошибку переполнения коллекции /// [Serializable] internal class CollectionOverflowException:ApplicationException { public CollectionOverflowException(int count): base("В коллекции превышено допустимое количество: count " + count) { } public CollectionOverflowException() : base() { } public CollectionOverflowException(string message): base(message) { } public CollectionOverflowException(string message, Exception exception) : base(message, exception) { } protected CollectionOverflowException(SerializationInfo info,StreamingContext context) : base(info, context) { } }