package com.plannaplan.exceptions; /** * Exception to be thrown when provided user does not exist in database */ public class UserNotFoundException extends Exception { private static final long serialVersionUID = 1L; public UserNotFoundException(String message) { super(message); } }