public BusinessException(Status status, Object parameter) { super( status.getHttpStatusCode(), MessageFormat.format(status.getReasonPhrase(), parameter), Arrays.asList(MessageFormat.format(status.getReasonPhrase(), parameter)), new BusinessException()); }
public BusinessException(Status status) { super( status.getHttpStatusCode(), status.getReasonPhrase(), Arrays.asList(status.getReasonPhrase()), new BusinessException()); }