aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/category/AddCategoryOptionResponse.java
blob: 89d3963ac0fd360f37a435eb7f3db65041cc48fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.onap.vid.category;

import org.onap.vid.model.ListOfErrorsResponse;

import java.util.List;

public class AddCategoryOptionResponse extends ListOfErrorsResponse {

    public AddCategoryOptionResponse() {
    }

    public AddCategoryOptionResponse(List<String> errors) {
        super(errors);
    }
}