mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-09-13 22:10:11 -04:00
16 lines
432 B
C#
16 lines
432 B
C#
namespace Cleanuparr.Domain.Exceptions;
|
|
|
|
/// <summary>
|
|
/// Thrown when a value read from text this build does not know reaches the database.
|
|
/// </summary>
|
|
public class UnknownEnumValueException : InvalidOperationException
|
|
{
|
|
public UnknownEnumValueException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public UnknownEnumValueException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|