Initial Project Commit

This commit is contained in:
dev-mkoebis
2025-12-17 10:22:42 +01:00
parent a319cd9247
commit 8ea5b112bb
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)
{
}
}
}