org.openbakery.coverage.command.CommandRunnerException.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of CoverageReport Show documentation
Show all versions of CoverageReport Show documentation
CoverageReport convert the llvm profdata code coverage to text, HTML or XML
package org.openbakery.coverage.command
/**
* Created by René Pirringer
* The CommandRunnerException is thrown by the CommandRunner if something went wrong
*/
class CommandRunnerException extends IllegalStateException {
CommandRunnerException() {
super()
}
CommandRunnerException(String s) {
super(s)
}
CommandRunnerException(String s, Throwable throwable) {
super(s, throwable)
}
CommandRunnerException(Throwable throwable) {
super(throwable)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy