Skip to content

Commit 6dcb072

Browse files
author
Petr Sramek
committed
kgy
1 parent 6be3e00 commit 6dcb072

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/PolylineAlgorithm/InvalidReaderStateException.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(InvalidReaderStateException)}: {{ToString()}}")]
19-
public sealed class InvalidReaderStateException : Exception {
19+
public sealed class InvalidReaderStateException : Exception
20+
21+
22+
23+
{
2024
private InvalidReaderStateException(string message)
2125
: base(message) { }
2226

0 commit comments

Comments
 (0)