Files
Umbraco-CMS/src/Umbraco.Core/Persistence/Migrations/DataLossException.cs
2017-07-20 11:21:28 +02:00

23 lines
471 B
C#

using System;
namespace Umbraco.Core.Persistence.Migrations
{
/// <summary>
/// Used if a migration has executed but the whole process has failed and cannot be rolled back
/// </summary>
internal class DataLossException : Exception
{
public DataLossException(string msg)
: base(msg)
{
}
public DataLossException(string msg, Exception inner)
: base(msg, inner)
{
}
}
}