using System;
namespace Umbraco.Core.Migrations
{
///
/// Represents errors that occurs when a migration exception is not executed.
///
///
/// Migration expression such as Alter.Table(...).Do() *must* end with Do() else they are
/// not executed. When a non-executed expression is detected, an IncompleteMigrationExpressionException
/// is thrown.
///
public class IncompleteMigrationExpressionException : Exception
{
///
/// Initializes a new instance of the class.
///
public IncompleteMigrationExpressionException()
{ }
///
/// Initializes a new instance of the class with a message.
///
public IncompleteMigrationExpressionException(string message)
: base(message)
{ }
}
}