User service added login and returning token

This commit is contained in:
Filip Izydorczyk
2020-09-14 12:39:25 +02:00
parent 8c16b2f3d1
commit 11f3625684
7 changed files with 151 additions and 3 deletions

View File

@ -0,0 +1,13 @@
package com.plannaplan.exceptions;
public class UserNotFoundException extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
public UserNotFoundException(String message) {
super(message);
}
}