mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-09-13 22:10:11 -04:00
13 lines
299 B
C#
13 lines
299 B
C#
namespace Cleanuparr.Domain.Exceptions;
|
|
|
|
public sealed class LazyLibrarianException : Exception
|
|
{
|
|
public LazyLibrarianException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public LazyLibrarianException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|