25 lines
802 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |