polish(localdb): final integration-review fixes — drift XML doc, trim core deps, metrics doc/encapsulation

Claude-Session: https://claude.ai/code/session_01BL2Vu1ESDQ9SCN4gVKkdts
This commit is contained in:
Joseph Doherty
2026-07-18 01:20:08 -04:00
parent ac6bcde159
commit de65ca2b5d
8 changed files with 31 additions and 9 deletions
@@ -8,8 +8,10 @@ namespace ZB.MOM.WW.LocalDb.Replication;
/// </summary>
public sealed class LocalDbSchemaMismatchException : Exception
{
/// <summary>Creates the exception with a message describing the schema disagreement.</summary>
public LocalDbSchemaMismatchException(string message) : base(message) { }
/// <summary>Creates the exception with a message and the underlying cause.</summary>
public LocalDbSchemaMismatchException(string message, Exception innerException)
: base(message, innerException) { }
}