All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.henricook.tls.TLSException.scala Maven / Gradle / Ivy

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) {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy