Skip to content
Snippets Groups Projects
Commit 46e4eaba authored by Victor Ekholt Gunrell Kaste's avatar Victor Ekholt Gunrell Kaste
Browse files

feat: created group not found exception.

parent 40826891
No related branches found
No related tags found
1 merge request!95Feat/group saving
package no.ntnu.idi.stud.savingsapp.exception.goal;
public final class GroupNotFoundException extends RuntimeException{
/**
* Constructs a GroupNotFoundException with default message.
*/
public GroupNotFoundException() { super("Group not found");}
/**
* Constructs a GroupNotFoundException with custom message.
*
* @param string the custom exception message
*/
public GroupNotFoundException(String string) {super(string);}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment