All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.yu.other.exception.UserNotFoundException Maven / Gradle / Ivy

The newest version!
package com.github.yu.other.exception;

public class UserNotFoundException extends BaseException{
    public UserNotFoundException() {
        super(ExceptionEnum.USER_NOT_FOUND);
    }

    public UserNotFoundException(String message, int status) {
        super(message, status);
    }

    public UserNotFoundException(ExceptionEnum exceptionEnum) {
        super(exceptionEnum);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy