summaryrefslogtreecommitdiffstats
path: root/asdctool/src/main/java/org/openecomp/sdc/asdctool/migration/core/MigrationException.java
blob: e9e805355ede63c65ed5db95864231d33293f355 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.openecomp.sdc.asdctool.migration.core;

public class MigrationException extends RuntimeException {

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

    public MigrationException(String message, RuntimeException e) {
        super(message, e);
    }

}