source: Git/Sources/src/main/java/com/wediscussmovies/project/model/exception/UserWithEmailAlreadyExists.java@ 980eeda

main
Last change on this file since 980eeda was 980eeda, checked in by Test <matonikolov77@…>, 22 months ago

Restructuring project

  • Property mode set to 100644
File size: 257 bytes
Line 
1package com.wediscussmovies.project.model.exception;
2
3public class UserWithEmailAlreadyExists extends RuntimeException{
4 public UserWithEmailAlreadyExists(String email) {
5 super("User with the email {" + email +"} is already registered");
6 }
7}
Note: See TracBrowser for help on using the repository browser.