Initial Project Commit
This commit is contained in:
25
Business/StructureException.cs
Normal file
25
Business/StructureException.cs
Normal 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)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user