-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
now sends out the correct issue doing a rollback for when connectivity (
#113) changes on route segment with related equipment
- Loading branch information
1 parent
c7bc5f1
commit c494f2c
Showing
3 changed files
with
56 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
...ator.Integrator/Commands/CannotChangeConnectivityRouteSegmentRelatedEquipmentException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using System; | ||
|
||
namespace OpenFTTH.GDBIntegrator.Integrator.Commands; | ||
|
||
public class CannotChangeConnectivityRouteSegmentRelatedEquipmentException : Exception | ||
{ | ||
public CannotChangeConnectivityRouteSegmentRelatedEquipmentException() | ||
{ | ||
} | ||
|
||
public CannotChangeConnectivityRouteSegmentRelatedEquipmentException(string message) | ||
: base(message) | ||
{ | ||
} | ||
|
||
public CannotChangeConnectivityRouteSegmentRelatedEquipmentException(string message, Exception inner) | ||
: base(message, inner) | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters