27 lines
568 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|