vatsalgosar 1f4dfef8db BAEL-2728 | vatsalgosar@gmail.com
- Sprint Boot application implementation using @SpringBootConfiguration annotation
2019-07-13 05:49:41 +05:30

9 lines
176 B
Java

package com.baeldung.exception;
public class PersonNotFoundException extends Exception {
public PersonNotFoundException(String message) {
super(message);
}
}