using System; namespace StructureHelperCommon.Infrastructures.Exceptions { public class StructureHelperException : Exception { public StructureHelperException(string errorString) : base(errorString) { } public StructureHelperException(Exception ex) : this(ex.Message) { } } }