profileShare

rasmusjy / tasteprint

Read-only snapshot

No repository description.

main default branch 169 files Expires Sep 13, 2026, 9:06 AM
NotFoundException.java 170 bytes
1 package com.tasteprint.shared;
2
3 public class NotFoundException extends RuntimeException {
4
5 public NotFoundException(String message) {
6 super(message);
7 }
8 }
9