Realiserung erweitert

This commit is contained in:
2026-05-08 08:15:28 +02:00
parent be14415ee9
commit 3bff3adb35
12 changed files with 443 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
using System;
namespace Gebhardt.StoreWare.Wcs.HostBooking.InterfaceWcsWms
{
public class FromWmsException : Exception
{
public FromWmsException(string message) : base(message)
{
}
public FromWmsException(string message, Exception innerException) : base(message, innerException)
{
}
}
}