网站首页 网站源码
website
站点相关全部源代码,隐藏了一些关于服务器的信息
using System;

namespace Dpz.Core.Infrastructure;

public class ExistsException : Exception
{
    public ExistsException() { }

    public ExistsException(string message)
        : base(message) { }

    public ExistsException(string message, Exception inner)
        : base(message, inner) { }
}
loading