package com.sn.sowsysrestapi.domain.exception;

public class ReportNotFoundException extends EntityNotFoundException{

    private static final long serialVersionUID = 1L;

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

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

}
