using System;
namespace ZB.MOM.WW.CBDDC.Core.Storage;
///
/// Represents an error that occurs when a database is found to be corrupt.
///
public class CorruptDatabaseException : Exception
{
///
/// Initializes a new instance of the class.
///
/// The exception message.
/// The underlying exception that caused this error.
public CorruptDatabaseException(string message, Exception innerException) : base(message, innerException)
{
}
}