Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
idatt2106-2024-07
backend
Commits
0c6eb10f
Commit
0c6eb10f
authored
1 year ago
by
Jens Christian Aanestad
Browse files
Options
Downloads
Patches
Plain Diff
feat/Created new NotificationNotFoundException class
parent
01d1fdda
Branches
Branches containing commit
No related tags found
1 merge request
!78
Feat/notifications
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/no/ntnu/idi/stud/savingsapp/exception/notification/NotificationNotFoundException.java
+13
-0
13 additions, 0 deletions
...exception/notification/NotificationNotFoundException.java
with
13 additions
and
0 deletions
src/main/java/no/ntnu/idi/stud/savingsapp/exception/notification/NotificationNotFoundException.java
0 → 100644
+
13
−
0
View file @
0c6eb10f
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"
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment