summaryrefslogtreecommitdiffstats
path: root/dcaedt_catalog/asdc/src/main/java/org/onap/sdc/dcae/errormng/ServiceException.java
blob: 163a07ffa1a304179846e47f176e34c66690cff9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.onap.sdc.dcae.errormng;

public class ServiceException extends AbstractSdncException {

	public ServiceException(String messageId, String text, String[] variables) {
		super(messageId, text, variables);
	}

	public ServiceException() {
	}

}