23 lines
471 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|