implements some internal web exception
This commit is contained in:
parent
3c07fa7322
commit
e0b774b67e
2 changed files with 20 additions and 0 deletions
10
BookAStar/BookAStar/Helpers/NotIdentifiedException.cs
Normal file
10
BookAStar/BookAStar/Helpers/NotIdentifiedException.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
using System;
|
||||
|
||||
namespace BookAStar
|
||||
{
|
||||
public class NotIdentifiedException : Exception
|
||||
{
|
||||
public NotIdentifiedException(string message) : base(message) { }
|
||||
}
|
||||
}
|
||||
|
||||
10
BookAStar/BookAStar/Helpers/ServiceNotAvailable1.cs
Normal file
10
BookAStar/BookAStar/Helpers/ServiceNotAvailable1.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
using System;
|
||||
|
||||
namespace BookAStar
|
||||
{
|
||||
public class ServiceNotAvailable : Exception
|
||||
{
|
||||
public ServiceNotAvailable(string message, Exception innerException) : base(message, innerException) { }
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue