BAEL-21597: Migrate spring-rest-angular to com.baeldung

This commit is contained in:
Krzysztof Woyke
2020-01-31 13:11:57 +01:00
parent afe5cb4144
commit 72e2e06821
13 changed files with 29 additions and 29 deletions

View File

@@ -0,0 +1,26 @@
package com.baeldung.web.exception;
public class MyResourceNotFoundException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 4088649120307193208L;
public MyResourceNotFoundException() {
super();
}
public MyResourceNotFoundException(final String message, final Throwable cause) {
super(message, cause);
}
public MyResourceNotFoundException(final String message) {
super(message);
}
public MyResourceNotFoundException(final Throwable cause) {
super(cause);
}
}