| | | 1 | | using System; |
| | | 2 | | |
| | | 3 | | namespace FastMigrations.Runtime |
| | | 4 | | { |
| | | 5 | | /// <summary>Represents errors that occur during <see cref="FastMigrationsConverter"/></summary> |
| | | 6 | | /// <seealso cref="MigratorMissingMethodHandling"/> |
| | | 7 | | public sealed class MigrationException : Exception |
| | | 8 | | { |
| | | 9 | | ///<summary> |
| | | 10 | | /// Initializes a new instance of the MigrationException class with a specified error message. |
| | | 11 | | /// </summary> |
| | | 12 | | /// <param name="message">The message that describes the error</param> |
| | | 13 | | /// <seealso cref="MigratorMissingMethodHandling"/> |
| | | 14 | | public MigrationException(string message) |
| | 3 | 15 | | : base(message) { } |
| | | 16 | | } |
| | | 17 | | } |