using System; using System.Collections.Generic; using System.Text; namespace MergeCMInpro.Business { internal class StructureException : Exception { public StructureException() { } public StructureException(string foldername) : base(string.Format("No Folder with name {0} available", foldername)) { } public StructureException(string message, Exception inner):base(message, inner) { } } }