sttp.tapir.server.interceptor.log.ExceptionContext.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tapir-server_2.13 Show documentation
Show all versions of tapir-server_2.13 Show documentation
Core classes for server interpreters & interceptors
package sttp.tapir.server.interceptor.log
import sttp.tapir.Endpoint
import sttp.tapir.model.ServerRequest
case class ExceptionContext[A, U](
endpoint: Endpoint[A, _, _, _, _],
securityInput: Option[A],
principal: Option[U],
request: ServerRequest
)