mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-16 11:09:33 +02:00
11 lines
183 B
Groovy
11 lines
183 B
Groovy
|
package util
|
||
|
|
||
|
import hudson.AbortException
|
||
|
|
||
|
class PipelineWhenException extends AbortException{
|
||
|
public PipelineWhenException(String message)
|
||
|
{
|
||
|
super(message);
|
||
|
}
|
||
|
}
|