source: src/main/java/mk/ukim/finki/busngo/model/exceptions/UserAlreadyExistsException.java@ b101b69

Last change on this file since b101b69 was b101b69, checked in by ppaunovski <paunovskipavel@…>, 6 months ago

initial classes, no inheritance yet v2

  • 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.