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.
22 lines
413 B
C#
22 lines
413 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|