mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-01-18 05:18:24 +02:00
11 lines
182 B
Groovy
11 lines
182 B
Groovy
package util
|
|
|
|
import hudson.AbortException
|
|
|
|
class PipelineWhenException extends AbortException{
|
|
public PipelineWhenException(String message)
|
|
{
|
|
super(message)
|
|
}
|
|
}
|