15 lines
No EOL
560 B
C#
15 lines
No EOL
560 B
C#
namespace JellyGlass.Exceptions;
|
|
|
|
public class ServerRepositoryException : Exception
|
|
{
|
|
public ServerRepositoryException() { }
|
|
public ServerRepositoryException(string message) : base(message) { }
|
|
public ServerRepositoryException(string message, Exception inner) : base(message, inner) { }
|
|
}
|
|
|
|
public class ServerNotFoundException : ServerRepositoryException
|
|
{
|
|
public ServerNotFoundException() { }
|
|
public ServerNotFoundException(string message) : base(message) { }
|
|
public ServerNotFoundException(string message, Exception inner) : base(message, inner) { }
|
|
} |