Skip to content

Commit

Permalink
refactor: moved exceptions to internal
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaxelr committed Aug 23, 2024
1 parent e9c09c5 commit 01eb27e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/MinimigLib/Exceptions/MigrationChangedException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ internal MigrationChangedException(Migration migration) : base($"{migration.File
{
}

public MigrationChangedException() : base()
internal MigrationChangedException()
{
}

public MigrationChangedException(string message) : base(message)
internal MigrationChangedException(string message) : base(message)
{
}

public MigrationChangedException(string message, Exception innerException) : base(message, innerException)
internal MigrationChangedException(string message, Exception innerException) : base(message, innerException)
{
}
}

0 comments on commit 01eb27e

Please sign in to comment.