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