Skip to content

Commit ce5505c

Browse files
author
Petr Sramek
committed
xzcf
1 parent 6f8df2f commit ce5505c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/PolylineAlgorithm/InvalidPolylineException.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ namespace PolylineAlgorithm;
1616
/// </summary>
1717
[SuppressMessage("Design", "CA1032:Implement standard exception constructors", Justification = "Internal use only.")]
1818
[DebuggerDisplay($"{nameof(InvalidPolylineException)}: {{ToString()}}")]
19-
public sealed class InvalidPolylineException : Exception {
19+
public sealed class InvalidPolylineException : Exception
20+
21+
22+
{
2023
private InvalidPolylineException(string message)
2124
: base(message) { }
2225

0 commit comments

Comments
 (0)