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