From eac299fe2c3186ad1acdfa9e4ee67ec4c3aa031d Mon Sep 17 00:00:00 2001 From: Adelina888 Date: Tue, 14 May 2024 10:01:44 +0400 Subject: [PATCH] =?UTF-8?q?=D0=BC=D0=B5=D0=BB=D0=BA=D0=B8=D0=B5=20=D0=B8?= =?UTF-8?q?=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ProjectStormtrooper/Exceptions/CollectionOverflowException.cs | 2 +- ProjectStormtrooper/Exceptions/ObjectNotFoundException.cs | 2 +- .../Exceptions/PositionOutOfCollectionException.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ProjectStormtrooper/Exceptions/CollectionOverflowException.cs b/ProjectStormtrooper/Exceptions/CollectionOverflowException.cs index 83adace..4b68566 100644 --- a/ProjectStormtrooper/Exceptions/CollectionOverflowException.cs +++ b/ProjectStormtrooper/Exceptions/CollectionOverflowException.cs @@ -12,7 +12,7 @@ namespace ProjectStormtrooper.Exceptions; [Serializable] internal class CollectionOverflowException:ApplicationException { - public CollectionOverflowException(int count): base("В коллекции превышено допустимое количество: count" + count) { } + 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) { } diff --git a/ProjectStormtrooper/Exceptions/ObjectNotFoundException.cs b/ProjectStormtrooper/Exceptions/ObjectNotFoundException.cs index 5fd15b9..fbd2976 100644 --- a/ProjectStormtrooper/Exceptions/ObjectNotFoundException.cs +++ b/ProjectStormtrooper/Exceptions/ObjectNotFoundException.cs @@ -12,7 +12,7 @@ namespace ProjectStormtrooper.Exceptions; [Serializable] internal class ObjectNotFoundException:ApplicationException { - public ObjectNotFoundException(int i): base("Не найден объект по позиции" + i) { } + public ObjectNotFoundException(int i): base("Не найден объект по позиции " + i) { } public ObjectNotFoundException() : base() { } public ObjectNotFoundException(string message) : base(message) { } public ObjectNotFoundException(string message, Exception exception) : base(message, exception) { } diff --git a/ProjectStormtrooper/Exceptions/PositionOutOfCollectionException.cs b/ProjectStormtrooper/Exceptions/PositionOutOfCollectionException.cs index 4d499af..3eabe01 100644 --- a/ProjectStormtrooper/Exceptions/PositionOutOfCollectionException.cs +++ b/ProjectStormtrooper/Exceptions/PositionOutOfCollectionException.cs @@ -12,7 +12,7 @@ namespace ProjectStormtrooper.Exceptions; [Serializable] internal class PositionOutOfCollectionException:ApplicationException { - public PositionOutOfCollectionException(int i):base("Выход за границы коллекции. Позиция" + i) { } + public PositionOutOfCollectionException(int i):base("Выход за границы коллекции. Позиция " + i) { } public PositionOutOfCollectionException() : base() { } public PositionOutOfCollectionException(string message) : base(message) { } public PositionOutOfCollectionException(string message, Exception exception): base(message, exception) { }