Exemplo n.º 1
0
 public BusinessException(Status status, Object parameter) {
   super(
       status.getHttpStatusCode(),
       MessageFormat.format(status.getReasonPhrase(), parameter),
       Arrays.asList(MessageFormat.format(status.getReasonPhrase(), parameter)),
       new BusinessException());
 }
Exemplo n.º 2
0
 public BusinessException(Status status) {
   super(
       status.getHttpStatusCode(),
       status.getReasonPhrase(),
       Arrays.asList(status.getReasonPhrase()),
       new BusinessException());
 }