source: src/main/java/com/example/medweb/model/exceptions/EmailAlreadyExistsException.java@ e5fefbd

Last change on this file since e5fefbd was e5fefbd, checked in by Anita Terziska <63020646+Nit4e@…>, 22 months ago

initial commit

  • Property mode set to 100644
File size: 244 bytes
Line 
1package com.example.medweb.model.exceptions;
2
3public class EmailAlreadyExistsException extends RuntimeException {
4
5 public EmailAlreadyExistsException(String email) {
6
7 super(String.format("Email %s already Eexists", email));
8 }
9}
Note: See TracBrowser for help on using the repository browser.