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