Oğuzhan Soykan
10/30/2024, 9:43 AMclass ExceptionPipelineBehavior : PipelineBehavior {
override val order: Int = PipelineBehavior.HIGHEST_PRECEDENCE
override suspend fun <TRequest, TResponse> handle(
request: TRequest,
next: RequestHandlerDelegate<TRequest, TResponse>
): TResponse = try {
next(request)
} catch (ex: Exception) {
throw ex
}
}
• Spring-boot packages are listed according to their version on maven
◦ com.trendyol:kediatr-spring-boot-2x-starter
◦ com.trendyol:kediatr-spring-boot-3x-starter
https://github.com/Trendyol/kediatR/releases/tag/3.1.0