package com.sn.sowsysrestapi.domain.exception;

public class ConcernNotFoundException extends EntityNotFoundException{

    private static final long serialVersionUID = 1L;

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

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


}
