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) { }