1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-03-03 15:02:35 +02:00
sap-jenkins-library/test/groovy/util/PipelineWhenException.groovy
Alejandra Ferreiro Vidal c21a4a6a3e remove semikolons
2019-05-23 14:28:32 +02:00

11 lines
182 B
Groovy

package util
import hudson.AbortException
class PipelineWhenException extends AbortException{
public PipelineWhenException(String message)
{
super(message)
}
}