Skip to content

Commit e19527c

Browse files
author
Gonzalo Diaz
committed
WIP
1 parent 112377c commit e19527c

File tree

1 file changed

+4
-0
lines changed
  • src/algorithm_exercises_csharp/hackerrank/interview_preparation_kit/dictionaries_and_hashmaps

1 file changed

+4
-0
lines changed

src/algorithm_exercises_csharp/hackerrank/interview_preparation_kit/dictionaries_and_hashmaps/RansomNote.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ public InvalidValueException(string msg)
1818
public InvalidValueException()
1919
{
2020
}
21+
22+
public InvalidValueException(string message, Exception innerException) : base(message, innerException)
23+
{
24+
}
2125
}
2226

2327
private const string __YES__ = "Yes";

0 commit comments

Comments
 (0)