Index: Migration/Scripts/src/Migration.Scripts.Data/CreateScript.cs
===================================================================
diff -u -r58d375a1c6b920e8597eae37dde622fda6a456ee -r22d820ab9e0333ce64e9ea74ac19867042906298
--- Migration/Scripts/src/Migration.Scripts.Data/CreateScript.cs (.../CreateScript.cs) (revision 58d375a1c6b920e8597eae37dde622fda6a456ee)
+++ Migration/Scripts/src/Migration.Scripts.Data/CreateScript.cs (.../CreateScript.cs) (revision 22d820ab9e0333ce64e9ea74ac19867042906298)
@@ -20,8 +20,8 @@
// All rights reserved.
using System;
-using System.Data.SQLite;
using Core.Common.Utils;
+using Migration.Scripts.Data.Exceptions;
namespace Migration.Scripts.Data
{
@@ -70,7 +70,8 @@
/// - ends with a directory or path separator (empty file name),
/// - is not writable.
///
- /// Thrown when executing query failed.
+ /// Thrown when creating
+ /// failed.
public IVersionedFile CreateEmptyVersionedFile(string location)
{
IOUtils.ValidateFilePathIsWritable(location);
@@ -92,6 +93,8 @@
/// The location to store the .
/// A new .
/// The has been verified in .
+ /// Thrown when creating
+ /// failed.
protected abstract IVersionedFile GetEmptyVersionedFile(string location);
}
}
\ No newline at end of file