source:
src/main/java/com/example/eatys_app/model/exceptions/KorisnikNotFoundException.java
Last change on this file was b3f2adb, checked in by , 14 months ago | |
---|---|
|
|
File size: 260 bytes |
Line | |
---|---|
1 | package com.example.eatys_app.model.exceptions; |
2 | |
3 | public class KorisnikNotFoundException extends RuntimeException { |
4 | |
5 | public KorisnikNotFoundException(String username) { |
6 | super(String.format("User with username: %s was not found", username)); |
7 | } |
8 | } |
Note:
See TracBrowser
for help on using the repository browser.