diff --git a/SelfPropelledArtilleryUnit/StorageOverflowException.cs b/SelfPropelledArtilleryUnit/StorageOverflowException.cs index 4b5cacd..1dda785 100644 --- a/SelfPropelledArtilleryUnit/StorageOverflowException.cs +++ b/SelfPropelledArtilleryUnit/StorageOverflowException.cs @@ -10,7 +10,7 @@ namespace Artilleries [Serializable] internal class StorageOverflowException : ApplicationException { - public StorageOverflowException(int count) : base($"В наборе превышенодопустимое количество: {count}") { } + public StorageOverflowException(int count) : base($"В наборе превышено допустимое количество: {count}") { } public StorageOverflowException() : base() { } public StorageOverflowException(string message) : base(message) { } public StorageOverflowException(string message, Exception exception) : base(message, exception) { }