Files
Umbraco-CMS/src/Umbraco.Core/Migrations/DataLossException.cs
2018-11-22 14:05:51 +00:00

23 lines
459 B
C#

using System;
namespace Umbraco.Core.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)
{
}
}
}