12 lines
247 B
C#
12 lines
247 B
C#
using System;
|
|
|
|
namespace StructureHelperCommon.Infrastructures.Exceptions
|
|
{
|
|
public class StructureHelperException : Exception
|
|
{
|
|
public StructureHelperException(string errorString) : base(errorString)
|
|
{
|
|
}
|
|
}
|
|
}
|