Fixing sonar Exception Handling
[sdc.git] / openecomp-be / tools / zusammen-tools / src / main / java / org / openecomp / core / tools / exceptions / HealingRuntimeException.java
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 }