Skip to content

Commit

Permalink
PEK-715 legg til teknisk feil fra tp-ordning
Browse files Browse the repository at this point in the history
  • Loading branch information
antonfofanov committed Nov 27, 2024
1 parent 1017265 commit 247c476
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class TjenestepensjonSimuleringV2025Controller(
when (e) {
is BrukerErIkkeMedlemException -> SimulerTjenestepensjonResponseDto(ResultatTypeDto.BRUKER_ER_IKKE_MEDLEM_HOS_TP_ORDNING, e.message, relevanteTpOrdninger)
is TpOrdningStoettesIkkeException -> SimulerTjenestepensjonResponseDto(ResultatTypeDto.TP_ORDNING_ER_IKKE_STOTTET, e.message, relevanteTpOrdninger)
is TjenestepensjonSimuleringException -> loggOgReturnerTekniskFeil(e)
is TjenestepensjonSimuleringException -> SimulerTjenestepensjonResponseDto(ResultatTypeDto.TEKNISK_FEIL_FRA_TP_ORDNING, e.message, relevanteTpOrdninger)
is TpregisteretException -> loggOgReturnerTekniskFeil(e)
else -> loggOgReturnerTekniskFeil(RuntimeException(e))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ enum class ResultatTypeDto {
BRUKER_ER_IKKE_MEDLEM_HOS_TP_ORDNING,
TP_ORDNING_ER_IKKE_STOTTET,
INGEN_UTBETALINGSPERIODER_FRA_TP_ORDNING,
TEKNISK_FEIL_FRA_TP_ORDNING,
}

data class SimuleringsResultatDto(
Expand Down

0 comments on commit 247c476

Please sign in to comment.