16 lines
324 B
C#
16 lines
324 B
C#
using System;
|
|
|
|
namespace CadParamPluging.Common
|
|
{
|
|
public class BusinessException : Exception
|
|
{
|
|
public BusinessException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public BusinessException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|