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