source: back_end/src/main/java/it/finki/tinki/model/exception/UserExistsException.java

Last change on this file was 81c9e25, checked in by Vzdra <vladko.zdravkovski@…>, 4 years ago

reorganization

  • Property mode set to 100644
File size: 198 bytes
Line 
1package it.finki.tinki.model.exception;
2
3
4public class UserExistsException extends RuntimeException{
5 public UserExistsException(){
6 super("User with that email already exists!");
7 }
8}
Note: See TracBrowser for help on using the repository browser.