Newer
Older
teacher-diary / src / main / java / ru / mcs / diary / common / exception / ResourceNotFoundException.java
package ru.mcs.diary.common.exception;

public class ResourceNotFoundException extends RuntimeException {

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

    public ResourceNotFoundException(String resource, Long id) {
        super(resource + " с ID " + id + " не найден");
    }
}