namespace Galaeth.Core.Exceptions; /// /// Exception to be thrown if errors occur during migrations. /// public class MigrationException : Exception { /// /// Initializes a new instance of the class. /// /// The migration file causing the error. /// The error message. public MigrationException(string file, string error) : base($"An exception occured whilst attempting to migrate the database with file {file}: {error}") { } }