klyn.net.MalformedURLException.MalformedURLException
constructor
public MalformedURLException(message as String = "Malformed URL"):
Description
Creates a malformed-URL exception.
import klyn.net

throw MalformedURLException("URL is invalid")
Parameters
  • message Human-readable error message. ```klyn import klyn.net throw MalformedURLException("URL is invalid") ```