package com.sn.sowsysrestapi.domain.exception;

public class SuggestionNotFoundException extends EntityNotFoundException{

    private static final long serialVersionUID = 1L;

    public SuggestionNotFoundException(String message) {
        super(message);
    }

    public SuggestionNotFoundException(Long id) {
        this(String.format("There is no record with 'Suggestion' ID %d", id));
    }


}
