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

Merge pull request #191 from marcusholl/pr/exceptionChaining

Pr/exception chaining
This commit is contained in:
Marcus Holl 2018-07-09 13:54:26 +02:00 committed by GitHub
commit 8c4c76dd05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,9 +2,13 @@ package com.sap.piper.cm;
public class ChangeManagementException extends RuntimeException {
private static final long serialVersionUID = -139169285551665766L
private static final long serialVersionUID = -139169285551665766L
ChangeManagementException(String message) {
super(message)
}
ChangeManagementException(String message) {
super(message, null)
}
ChangeManagementException(String message, Throwable cause) {
super(message, cause)
}
}