using System;
namespace Inspectron.Settings
{
public class AdaptationException : Exception
{
///
/// Constructor
/// Message explaining why this object couldn't be adapted
public AdaptationException(string message)
: base(message)
{
}
///
/// Constructor
/// Message explaining why this object couldn't be adapted
/// The exception that prevented adaptation. Will become the
/// InnerException property.
public AdaptationException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}