Skip to content

Commit 7cb55ae

Browse files
author
Kevin Hellemun
committed
Changed Ilist to IEnumerable. (#63)
1 parent 7429ce0 commit 7cb55ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

BunqSdk/Exception/ExceptionFactory.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ public class ExceptionFactory
1818
/// <summary>
1919
/// String format constants.
2020
/// </summary>
21-
private static string FORMAT_ERROR_MESSAGE = "Response id to help bunq debug: {0}. \n Error message: {1}";
21+
private const string FORMAT_ERROR_MESSAGE = "Response id to help bunq debug: {0}. \n Error message: {1}";
2222

2323
/// <returns>The exception that belongs to this status code.</returns>
2424
public static ApiException CreateExceptionForResponse(
2525
int responseCode,
26-
IList<string> messages,
26+
IEnumerable<string> messages,
2727
string responseId
2828
)
2929
{

0 commit comments

Comments
 (0)