1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00

add basic ChangeManagement

This commit is contained in:
Alejandra Ferreiro Vidal 2018-06-26 10:39:46 +02:00
parent e2d3a6171d
commit cf4eea82a6
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,8 @@
package com.sap.piper.cm
public class ChangeManagement implements Serializable {
private script
}

View File

@ -0,0 +1,10 @@
package com.sap.piper.cm;
public class ChangeManagementException extends RuntimeException {
private static final long serialVersionUID = -139169285551665766L
ChangeManagementException(String message) {
super(message)
}
}