backend/buisnesslogic/src/main/java/com/plannaplan/exceptions/UserNotFoundException.java
2021-01-15 15:54:17 +01:00

14 lines
309 B
Java
Executable File

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);
}
}