blob: 6e37c868260f0bcf19d38868c6f4f80824a56b96 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
package dev.submelon.exceptions;
import io.smallrye.graphql.api.ErrorCode;
@ErrorCode("item-not-found")
public class ItemNotFoundException extends RuntimeException {
public ItemNotFoundException(Throwable th) {
super(th);
}
}
|