added RemoteApiException

This commit is contained in:
2026-05-17 00:38:47 +02:00
parent 5b2648d526
commit f39bf049a0
3 changed files with 19 additions and 5 deletions
@@ -0,0 +1,11 @@
package com.vaessl.app.exception;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
@Getter
@RequiredArgsConstructor
public class RemoteApiException extends RuntimeException {
private final String appUrl;
}