implements some internal web exception

This commit is contained in:
Paul Schneider 2016-10-03 18:06:52 +02:00
commit e0b774b67e
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,10 @@
using System;
namespace BookAStar
{
public class NotIdentifiedException : Exception
{
public NotIdentifiedException(string message) : base(message) { }
}
}

View file

@ -0,0 +1,10 @@
using System;
namespace BookAStar
{
public class ServiceNotAvailable : Exception
{
public ServiceNotAvailable(string message, Exception innerException) : base(message, innerException) { }
}
}