aboutsummaryrefslogtreecommitdiffstats
path: root/adapters/mso-adapter-utils/src/main/java/org/onap/so/openstack/utils/StackCreationException.java
blob: 3a377efce604cc46e7ba3c60de0058fa7ff4b06c (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.onap.so.openstack.utils;

import org.onap.so.openstack.exceptions.MsoException;

public class StackCreationException extends MsoException {

    public StackCreationException(String error) {
        super(error);
    }

}