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

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

    public CommandExecutionRuntimeException(String message) {
        super(message);
    }
}