You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/HcDBUtility/Core/ModelDbException.cs

22 lines
413 B
C#

2 years ago
using System;
namespace HcUtility.Core
{
public class ModelDbException: Exception
{
public ModelDbException() : base("exception message")
{
}
public ModelDbException(string message) : base(message)
{
}
public ModelDbException(string message, Exception inner)
: base(message, inner)
{
}
}
}