check point

This commit is contained in:
meelstorm
2025-07-14 12:03:59 +02:00
commit d3cb790bd9
431 changed files with 44078 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
using System;
namespace Inspectron.Settings
{
public class AdaptationException : Exception
{
/// <summary>
/// Constructor</summary>
/// <param name="message">Message explaining why this object couldn't be adapted</param>
public AdaptationException(string message)
: base(message)
{
}
/// <summary>
/// Constructor</summary>
/// <param name="message">Message explaining why this object couldn't be adapted</param>
/// <param name="innerException">The exception that prevented adaptation. Will become the
/// InnerException property.</param>
public AdaptationException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}