Седьмая лабораторная работа. Добавление Exception.

This commit is contained in:
ksenianeva 2022-11-29 13:14:11 +04:00
parent 94b298145b
commit a8456abc36
2 changed files with 24 additions and 0 deletions

View File

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

View File

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