package com.sn.sowsysrestapi.domain.exception;

public class CurrentTaskNotFoundException extends EntityNotFoundException{

    private static final long serialVersionUID = 1L;

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

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


}
