1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00

Support exception chaining in ChangeMangementException

This commit is contained in:
Marcus Holl 2018-07-09 13:43:52 +02:00
parent 1d51641cce
commit 8e63e45133

View File

@ -5,6 +5,10 @@ public class ChangeManagementException extends RuntimeException {
private static final long serialVersionUID = -139169285551665766L
ChangeManagementException(String message) {
super(message)
super(message, null)
}
ChangeManagementException(String message, Throwable cause) {
super(message, cause)
}
}