source: src/main/java/tech/techharbor/Model/Exceptions/DeliveryNotFoundException.java

main
Last change on this file was f4b4afa, checked in by Nikola Todoroski <nikola.todoroski@…>, 6 months ago

Pushed whole project, original project location on github:https://github.com/hehxd/Tech-Harbor

  • Property mode set to 100644
File size: 258 bytes
Line 
1package tech.techharbor.Model.Exceptions;
2
3public class DeliveryNotFoundException extends RuntimeException{
4
5 public DeliveryNotFoundException(Integer deliveryId) {
6 super(String.format("Delivery with id %d does not exist.", deliveryId));
7 }
8
9}
Note: See TracBrowser for help on using the repository browser.