AIMS/AIMSExtension/DbAccessException.cs
2022-08-23 21:12:59 +08:00

20 lines
329 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HelperDB
{
class DbAccessException : ApplicationException
{
public DbAccessException()
{
}
public DbAccessException(string message)
: base(message)
{
}
}
}