source: bus-n-go-do-5ta-faza/src/main/java/mk/ukim/finki/busngo/model/exceptions/UserAlreadyExistsException.java

Last change on this file was baf4cc4, checked in by ppaunovski <paunovskipavel@…>, 3 months ago

split group project and individual project into two separate folders

  • Property mode set to 100644
File size: 202 bytes
Line 
1package mk.ukim.finki.busngo.model.exceptions;
2
3public class UserAlreadyExistsException extends RuntimeException{
4 public UserAlreadyExistsException(String message) {
5 super(message);
6 }
7}
Note: See TracBrowser for help on using the repository browser.