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:
commit
8c4c76dd05
@ -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)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user