16 lines
353 B
C#
16 lines
353 B
C#
using System;
|
|
|
|
namespace StructureHelperCommon.Infrastructures.Exceptions
|
|
{
|
|
public class StructureHelperException : Exception
|
|
{
|
|
public StructureHelperException(string errorString) : base(errorString)
|
|
{
|
|
}
|
|
public StructureHelperException(Exception ex) : this(ex.Message)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|