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