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

io.gitlab.arturbosch.detekt.cli.Errors.kt Maven / Gradle / Ivy

There is a newer version: 1.23.7
Show newest version
package io.gitlab.arturbosch.detekt.cli

/**
 * Thrown when --help is requested.
 */
class HelpRequest(val usageText: String) : RuntimeException()

/**
 * Thrown when parsing arguments by JCommander and validating them further.
 * As the parsing logic prints the --help message along other parameter errors,
 * this exception signals the main loop that no further printing is necessary.
 */
class HandledArgumentViolation(message: String?, val usageText: String) : RuntimeException(message)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy