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

9 lines
241 B
Java

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