Files
HawkeyeVision/framework/Inspectron.Settings/AdaptationException.cs
2025-07-14 12:03:59 +02:00

25 lines
802 B
C#

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)
{
}
}
}