package com.sn.sowsysrestapi.domain.exception;

public class ReportDirectoryNotFoundException extends EntityNotFoundException{

    private static final long serialVersionUID = 1L;

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

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


}
