github.com/ouraigua/jenkins-library@v0.0.0-20231028010029-fbeaf2f3aa9b/src/com/sap/piper/cm/ChangeManagementException.groovy (about) 1 package com.sap.piper.cm 2 3 public class ChangeManagementException extends RuntimeException { 4 5 private static final long serialVersionUID = -139169285551665766L 6 7 ChangeManagementException(String message) { 8 super(message, null) 9 } 10 11 ChangeManagementException(String message, Throwable cause) { 12 super(message, cause) 13 } 14 }