package com.sn.sowsysrestapi.domain.exception;

public class ProfilePictureNotFoundException extends EntityNotFoundException{

    private static final long serialVersionUID = 1L;

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

    public ProfilePictureNotFoundException(String userCode, String ownerCode){
        this(String.format("There is no record with Picture code %s for the the User with code %s", ownerCode, userCode));
    }


}
