package com.sn.sowsysrestapi.domain.exception;

public class UserNotFoundException extends EntityNotFoundException{

    private static final long serialVersionUID = 1L;

//    public UserNotFoundException(String message) {
//        super(message);
//    }

//    public UserNotFoundException(Long id) {
//        this(String.format("There is no record with User ID %d.", id));
//    }

    public UserNotFoundException(String userCode) {
        super(String.format("There is no record with User Code %s.", userCode));
    }


}
