I have result like:
EitherT[Future, IllegalStateException, Result]
how to convert to Future[Result] ? And let Future fail with this IllegalStateException ? I know I can do like resultT.value to get Future[Either[Exception, Res]] and convert it but maybe there is simpler way.