source: src/main/java/it/finki/tinki/model/exception/SkillNotFoundException.java@ 336d09e

Last change on this file since 336d09e was 4a15c9c, checked in by i-ina <76742075+i-ina@…>, 3 years ago

added user registration

  • Property mode set to 100644
File size: 225 bytes
Line 
1package it.finki.tinki.model.exception;
2
3public class SkillNotFoundException extends RuntimeException{
4 public SkillNotFoundException(Long id){
5 super(String.format("Skill with id: %d was not found!", id));
6 }
7}
Note: See TracBrowser for help on using the repository browser.