Skip to content

Commit 73d1c94

Browse files
author
Petr Sramek
committed
xzca
1 parent 8165c5e commit 73d1c94

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/PolylineAlgorithm/InvalidPolylineException.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ 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+
23+
{
2024
private InvalidPolylineException(string message)
2125
: base(message) { }
2226

0 commit comments

Comments
 (0)