Skip to content

Commit

Permalink
endret exception-informasjon i feilinfo for feil ved oppdatering av fnr
Browse files Browse the repository at this point in the history
  • Loading branch information
jankroken-nav committed Nov 21, 2024
1 parent 8cf4927 commit 3bea5f2
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ class KompletteringsService(
komplettering.withFeilinformasjon(
Feilinformasjon.UgyldigIdent(
message = "Feil ved oppdatering av ident for barnetrygdmottaker",
exceptionMessage = e.message ?: "",
exceptionType = e::class.java.canonicalName,
exceptionMessage = e.cause?.message ?: "",
exceptionType = e.cause?.javaClass?.canonicalName ?: "",
ident = barnetrygdmottakerUtenPdlData.ident.value,
identRolle = IdentRolle.BARNETRYGDMOTTAKER,
)
Expand Down Expand Up @@ -164,8 +164,8 @@ class KompletteringsService(
komplettering.withFeilinformasjon(
Feilinformasjon.UgyldigIdent(
message = "Feil ved oppdatering av ident for hjelpestønadmottager",
exceptionType = e::class.java.canonicalName,
exceptionMessage = e.message ?: "",
exceptionMessage = e.cause?.message ?: "",
exceptionType = e.cause?.javaClass?.canonicalName ?: "",
ident = e.fnr.value,
identRolle = e.rolle,
)
Expand Down

0 comments on commit 3bea5f2

Please sign in to comment.