From a8456abc3610852a91b76080cbcc4ebc4f25a1fa Mon Sep 17 00:00:00 2001 From: ksenianeva <95441235+ksenianeva@users.noreply.github.com> Date: Tue, 29 Nov 2022 13:14:11 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=B5=D0=B4=D1=8C=D0=BC=D0=B0=D1=8F=20?= =?UTF-8?q?=D0=BB=D0=B0=D0=B1=D0=BE=D1=80=D0=B0=D1=82=D0=BE=D1=80=D0=BD?= =?UTF-8?q?=D0=B0=D1=8F=20=D1=80=D0=B0=D0=B1=D0=BE=D1=82=D0=B0.=20=D0=94?= =?UTF-8?q?=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20Except?= =?UTF-8?q?ion.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ContainerShip/ContainerShip/ShipNotFoundException.cs | 12 ++++++++++++ .../ContainerShip/StorageOverflowException.cs | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 ContainerShip/ContainerShip/ShipNotFoundException.cs create mode 100644 ContainerShip/ContainerShip/StorageOverflowException.cs diff --git a/ContainerShip/ContainerShip/ShipNotFoundException.cs b/ContainerShip/ContainerShip/ShipNotFoundException.cs new file mode 100644 index 0000000..2f5c52c --- /dev/null +++ b/ContainerShip/ContainerShip/ShipNotFoundException.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ContainerShip +{ + internal class ShipNotFoundException + { + } +} diff --git a/ContainerShip/ContainerShip/StorageOverflowException.cs b/ContainerShip/ContainerShip/StorageOverflowException.cs new file mode 100644 index 0000000..4ea92bb --- /dev/null +++ b/ContainerShip/ContainerShip/StorageOverflowException.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ContainerShip +{ + internal class StorageOverflowException + { + } +}