package com.sn.sowsysrestapi.domain.exception;

public class NextPeriodTaskNotFoundException extends EntityNotFoundException{

    private static final long serialVersionUID = 1L;

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

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


}
