Reformat/cleanup
All checks were successful
NuGet Package Publish / nuget (push) Successful in 1m10s

This commit is contained in:
Joseph Doherty
2026-02-21 07:53:53 -05:00
parent c6f6d9329a
commit 7ebc2cb567
160 changed files with 7258 additions and 7262 deletions

View File

@@ -1,16 +1,18 @@
using System;
using System;
namespace ZB.MOM.WW.CBDDC.Core.Storage;
/// <summary>
/// Represents an error that occurs when a database is found to be corrupt.
/// Represents an error that occurs when a database is found to be corrupt.
/// </summary>
public class CorruptDatabaseException : Exception
{
/// <summary>
/// Initializes a new instance of the <see cref="CorruptDatabaseException"/> class.
/// Initializes a new instance of the <see cref="CorruptDatabaseException" /> class.
/// </summary>
/// <param name="message">The exception message.</param>
/// <param name="innerException">The underlying exception that caused this error.</param>
public CorruptDatabaseException(string message, Exception innerException) : base(message, innerException) { }
}
public CorruptDatabaseException(string message, Exception innerException) : base(message, innerException)
{
}
}