17 lines
651 B
C#
17 lines
651 B
C#
|
using System.Runtime.Serialization;
|
|||
|
|
|||
|
namespace ProjectTank.Exceptions
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
internal class TankNotFoundException : ApplicationException
|
|||
|
{
|
|||
|
public TankNotFoundException(int i) : base($"Не найден объект по позиции {i}") { }
|
|||
|
public TankNotFoundException() : base() { }
|
|||
|
public TankNotFoundException(string message) : base(message) { }
|
|||
|
public TankNotFoundException(string message, Exception exception) :
|
|||
|
base(message, exception) { }
|
|||
|
protected TankNotFoundException(SerializationInfo info,
|
|||
|
StreamingContext contex) : base(info, contex) { }
|
|||
|
}
|
|||
|
}
|