806d12782f281dd0507c909c8a886e25fedb6774
[ccsdk/dashboard.git] /
1 package org.onap.ccsdk.dashboard.exceptions.inventory;
2
3 public class ServiceTypeAlreadyExistsException extends Exception {
4
5         private static final long serialVersionUID = 8146558049192514157L;
6
7         public ServiceTypeAlreadyExistsException() { super(); }
8         public ServiceTypeAlreadyExistsException(String msg) { super(msg); }
9         public ServiceTypeAlreadyExistsException(Throwable cause) { super(cause); }
10         public ServiceTypeAlreadyExistsException(String msg, Throwable cause) { super(msg, cause); }
11 }