This commit is contained in:
j4587698
2020-02-09 19:10:05 +08:00
commit 358617b0c3
414 changed files with 96012 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using System;
namespace JXCMS.Core.Exception
{
public class CMSException : System.Exception
{
public CMSException() : base() { }
public CMSException(string message) : base(message) { }
}
}