Initila commit

This commit is contained in:
dev-mkoebis
2026-04-23 14:26:26 +02:00
parent 7d4d43fb5a
commit cccbb667a8
14 changed files with 1293 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
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)
{
}
}
}