package com.vaessl.app.exception; import lombok.Getter; @Getter public class RemoteApiException extends RuntimeException { private final String appUrl; private final String path; public RemoteApiException(String appUrl, String path) { super("Remote API returned empty body: " + appUrl + path); this.appUrl = appUrl; this.path = path; } }