using System;
namespace Umbraco.Core.Exceptions
{
///
/// An exception that is thrown if the Umbraco application cannnot boot.
///
public class BootFailedException : Exception
{
///
/// Initializes a new instance of the class with a specified error message.
///
/// The message that describes the error.
public BootFailedException(string message)
: base(message)
{ }
///
/// Initializes a new instance of the class with a specified error message
/// and a reference to the inner exception which is the cause of this exception.
///
/// The message that describes the error.
/// The inner exception, or null.
public BootFailedException(string message, Exception inner)
: base(message, inner)
{ }
}
}