def asFuture()

in app/models/Attempt.scala [40:48]


  def asFuture(implicit
      ec: ExecutionContext
  ): Future[Either[AMIableErrors, A]] = {
    underlying recover { case err =>
      val apiErrors =
        AMIableErrors(AMIableError(err.getMessage, "Unexpected error", 500))
      scala.Left(apiErrors)
    }
  }