Skip to content
Snippets Groups Projects
Commit 0c6eb10f authored by Jens Christian Aanestad's avatar Jens Christian Aanestad
Browse files

feat/Created new NotificationNotFoundException class

parent 01d1fdda
Branches
No related tags found
1 merge request!78Feat/notifications
package no.ntnu.idi.stud.savingsapp.exception.notification;
/**
* Exception thrown when attempting to retrieve a Notification that does not exist.
*/
public class NotificationNotFoundException extends RuntimeException {
/**
* Constructs a NotificationNotFoundException with the default message.
*/
public NotificationNotFoundException() {
super("Notification is not found");
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment