Добавил свою реализацию ошибки
This commit is contained in:
parent
b980ebabe8
commit
787de84492
@ -1,4 +1,6 @@
|
||||
namespace Cop.Borovkov.Var3.Components
|
||||
using Cop.Borovkov.Var3.Exceptions;
|
||||
|
||||
namespace Cop.Borovkov.Var3.Components
|
||||
{
|
||||
public partial class CustomNumericInputField : UserControl
|
||||
{
|
||||
@ -48,7 +50,7 @@
|
||||
return value;
|
||||
}
|
||||
|
||||
throw new InvalidOperationException();
|
||||
throw new InvalidNumericInputValueException();
|
||||
}
|
||||
set
|
||||
{
|
||||
|
@ -7,8 +7,4 @@
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="Exceptions\" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
@ -0,0 +1,9 @@
|
||||
namespace Cop.Borovkov.Var3.Exceptions
|
||||
{
|
||||
public class InvalidNumericInputValueException : Exception
|
||||
{
|
||||
public InvalidNumericInputValueException() { }
|
||||
|
||||
public InvalidNumericInputValueException(string message) : base(message) { }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user