[AB-xxx] adding amongusText image generation

This commit is contained in:
Sheldan
2024-01-24 08:18:36 +01:00
parent 6030904d21
commit 71c18f8348
97 changed files with 337 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
package dev.sheldan.abstracto.core.exception;
import lombok.Builder;
import lombok.Getter;
@Getter
@Builder
public class RequestException extends RuntimeException {
private String errorMessage; // we just assume the body will be a plain text instead
private Integer httpCode;
}