프록시 class에서 예외를 전달할 수 없습니다.
질문 인터페이스가 있습니다. public interface ThirdPartySystemCaller { void sendRequest(String request) throws ThirdPartySystemException; } 그리고 구현 코드 : @Slf4j @Service public class ThirdPartySystemCallerImpl implements ThirdPartySystemCaller { @Override public void sendRequest(String request) throws ThirdPartySystemException { if (request == null) throw new ThirdPartySystemException(); log.info("send: {}", r..