com.henricook.tls.TLSException.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cryptoutils_2.13 Show documentation
Show all versions of cryptoutils_2.13 Show documentation
Cryptoutils for Scala 2.12 and 2.13 - Forked from Karasiq
The newest version!
package com.henricook.tls
import java.io.IOException
/**
* Generic TLS exception
* @param message Error message
* @param cause Error cause
*/
class TLSException(message: String = null, cause: Throwable = null)
extends IOException(message, cause) {}