Scala: Como ignorar 'SSLHandshakeException'

Com esse código:

val html = Source.fromURL("https://scans.io/json")

Obtendo exceção:

Exception in thread "main" javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
at sun.security.ssl.Alerts.getSSLException(Alerts.java:192)
at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1886)
...

Posso encontrar como corrigir em Java, mas não faço ideia - como corrigi-lo no Scala?

questionAnswers(1)

yourAnswerToTheQuestion