@@ -3,6 +3,8 @@ package no.nav.familie.ba.sak.common
3
3
import com.fasterxml.jackson.annotation.JsonInclude
4
4
import com.fasterxml.jackson.annotation.JsonPropertyOrder
5
5
import no.nav.familie.ba.sak.kjerne.autovedtak.satsendring.SatsendringSvar
6
+ import no.nav.familie.log.mdc.MDCConstants
7
+ import org.slf4j.MDC
6
8
import org.springframework.http.HttpStatus
7
9
import java.time.LocalDateTime
8
10
import kotlin.contracts.ExperimentalContracts
@@ -14,6 +16,7 @@ open class Feil(
14
16
open val httpStatus : HttpStatus = HttpStatus .OK ,
15
17
open val throwable : Throwable ? = null ,
16
18
override val cause : Throwable ? = throwable,
19
+ open val callId : String? = MDC .get(MDCConstants .MDC_CALL_ID ),
17
20
) : RuntimeException(message)
18
21
19
22
open class FunksjonellFeil (
@@ -22,6 +25,7 @@ open class FunksjonellFeil(
22
25
open val httpStatus : HttpStatus = HttpStatus .OK ,
23
26
open val throwable : Throwable ? = null ,
24
27
override val cause : Throwable ? = throwable,
28
+ open val callId : String? = MDC .get(MDCConstants .MDC_CALL_ID ),
25
29
) : RuntimeException(melding)
26
30
27
31
class Vilk årFeil(
0 commit comments