< Summary

Class:FastMigrations.Runtime.MigrationException
Assembly:FastMigrations.Runtime
File(s):/github/workspace/FastMigrations.Unity/Assets/FastMigrations/Runtime/MigrationException.cs
Covered lines:1
Uncovered lines:0
Coverable lines:1
Total lines:17
Line coverage:100% (1 of 1)
Covered branches:0
Total branches:0
Covered methods:1
Total methods:1
Method coverage:100% (1 of 1)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
MigrationException(...)0%110100%

File(s)

/github/workspace/FastMigrations.Unity/Assets/FastMigrations/Runtime/MigrationException.cs

#LineLine coverage
 1using System;
 2
 3namespace 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)
 315            : base(message) { }
 16    }
 17}