711737896fbf6dddb7c1829283ba038f564e0d4f
[sdc.git] /
1 package org.openecomp.core.tools.exceptions;
2
3 public class HealingRuntimeException extends RuntimeException {
4     public HealingRuntimeException(String message, Exception exception) {
5         super(message, exception);
6     }
7
8     public HealingRuntimeException(Exception exception) {
9         super(exception);
10     }
11 }