parent
3c5b139523
commit
32ce3bde21
@ -1,9 +1,17 @@
|
|||||||
|
using System.Runtime.Serialization;
|
||||||
|
|
||||||
namespace Recyclarr.TrashLib.Cache;
|
namespace Recyclarr.TrashLib.Cache;
|
||||||
|
|
||||||
|
[Serializable]
|
||||||
public class CacheException : Exception
|
public class CacheException : Exception
|
||||||
{
|
{
|
||||||
public CacheException(string? message)
|
public CacheException(string? message)
|
||||||
: base(message)
|
: base(message)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected CacheException(SerializationInfo info, StreamingContext context)
|
||||||
|
: base(info, context)
|
||||||
|
{
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in new issue