aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/tools/zusammen-tools/src/main/java/org/openecomp/core/tools/exceptions/HealingRuntimeException.java
blob: 711737896fbf6dddb7c1829283ba038f564e0d4f (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.openecomp.core.tools.exceptions;

public class HealingRuntimeException extends RuntimeException {
    public HealingRuntimeException(String message, Exception exception) {
        super(message, exception);
    }

    public HealingRuntimeException(Exception exception) {
        super(exception);
    }
}