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