check point
This commit is contained in:
25
framework/Inspectron.Settings/AdaptationException.cs
Normal file
25
framework/Inspectron.Settings/AdaptationException.cs
Normal 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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user