using System; namespace LibationFileManager; /// Thrown when an in-app upgrade overlay did not update all required install files. public sealed class InstallUpgradeIntegrityException : Exception { public InstallUpgradeIntegrityException(string message) : base(message) { } public InstallUpgradeIntegrityException(string message, Exception innerException) : base(message, innerException) { } }