refactor: restructure host message handling by implementing specialized handlers and updating database schema documentation

This commit is contained in:
2026-05-11 10:50:51 +02:00
parent 6c4fabe603
commit aecf032f22
31 changed files with 99 additions and 2 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)
{
}
}
}