mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-06-26 08:16:15 -04:00
12 lines
417 B
C#
12 lines
417 B
C#
using System;
|
|
|
|
namespace LibationFileManager;
|
|
|
|
/// <summary>Thrown when an in-app upgrade overlay did not update all required install files.</summary>
|
|
public sealed class InstallUpgradeIntegrityException : Exception
|
|
{
|
|
public InstallUpgradeIntegrityException(string message) : base(message) { }
|
|
|
|
public InstallUpgradeIntegrityException(string message, Exception innerException) : base(message, innerException) { }
|
|
}
|