social-service-model/src/main/java/org/gcube/social_networking/socialnetworking/model/shared/exceptions/NotificationIDNotFoundExcep...

8 lines
252 B
Java

package org.gcube.social_networking.socialnetworking.model.shared.exceptions;
@SuppressWarnings("serial")
public class NotificationIDNotFoundException extends Exception {
public NotificationIDNotFoundException(String message) {
super(message);
}
}