Skip to content

Commit

Permalink
fiks kompileringsfeil for named argumnet
Browse files Browse the repository at this point in the history
  • Loading branch information
rannveigskjerve committed Jun 18, 2024
1 parent e35a769 commit e65abe1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ internal object TokenStringUtil {
}

class TokendingsExchangeException(val originalThrowable: Throwable, clientId: String) :
Exception(message = originalThrowable.stackTrace.firstOrNull()?.let { stacktraceElement ->
Exception(originalThrowable.stackTrace.firstOrNull()?.let { stacktraceElement ->
""" Tokendingsexchange feiler for $clientId
Origin: ${stacktraceElement.fileName ?: "---"} ${stacktraceElement.methodName ?: "----"} linenumber:${stacktraceElement.lineNumber}
Message: "${originalThrowable::class.simpleName} ${originalThrowable.message?.let { ":$it" }}"
Expand Down

0 comments on commit e65abe1

Please sign in to comment.