package com.sn.sowsysrestapi.domain.exception;

public class CompletedTaskNotFoundException extends EntityNotFoundException{

    private static final long serialVersionUID = 1L;

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

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


}
