source:
source/src/main/java/com/example/db/exceptions/UserAlreadyExistsException.java
Last change on this file was bc0eeb4, checked in by , 2 years ago | |
---|---|
|
|
File size: 248 bytes |
Line | |
---|---|
1 | package com.example.db.exceptions; |
2 | |
3 | public class UserAlreadyExistsException extends RuntimeException{ |
4 | public UserAlreadyExistsException(String username){ |
5 | super(String.format("Users with username: %s already exists", username)); |
6 | } |
7 | } |
Note:
See TracBrowser
for help on using the repository browser.