ParseException

class ParseException(val message: String, val cause: Throwable? = null) : IllegalArgumentException

Thrown to indicate that the application has attempted to convert a string to one of the specific types, but that the string does not have the appropriate format. Please check the message for more details on the failure.

Constructors

Link copied to clipboard
constructor(message: String, cause: Throwable? = null)

Properties

Link copied to clipboard
open override val cause: Throwable? = null
Link copied to clipboard
open override val message: String