live-forum/server/webapi/LiveForum/LiveForum.Code/ExceptionExtend/RedisNullException.cs
2026-03-24 11:27:37 +08:00

27 lines
568 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LiveForum.Code.ExceptionExtend
{
/// <summary>
/// redis 未找到数据
/// </summary>
public class RedisNullException : Exception
{
public RedisNullException()
{
}
public RedisNullException(string message)
: base(message)
{
}
public RedisNullException(string message, Exception inner)
: base(message, inner)
{
}
}
}