InvalidInputException

class InvalidInputException(message: String, cause: Throwable? = null) : RuntimeException

The InvalidInputException class shall represent a run-time exception that occurs due to one of the following reasons:

  • Parameter value is mandatory, but was not provided.

  • Parameter value does not conform to the specified format.

  • Parameter value exceeds the maximum limit.

  • Parameter value does not meet the minimum length criteria.

Constructors

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

Properties

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

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard