Spring Boot - Exception Handling
Given this custom exception class:
What will happen if this exception is thrown in a Spring Boot controller without any handler?
public class DataNotFoundException extends RuntimeException {
public DataNotFoundException(String message) {
super(message);
}
}What will happen if this exception is thrown in a Spring Boot controller without any handler?
