コード例 #1
0
  @Override
  public void throwBusinessException(
      Throwable throwable, BusinessError businessError, Object... args) {

    super.throwBusinessException(throwable, businessError, args);
  }
コード例 #2
0
 @Override
 public void throwIfNull(Object object, BusinessException businessException, Object... object2) {
   super.throwIfNull(object, businessException, object2);
 }
コード例 #3
0
  @Override
  public void throwBusinessException(
      BusinessException businessException, Throwable throwable, Object... args) {

    super.throwBusinessException(businessException, throwable, args);
  }
コード例 #4
0
  @Override
  public void throwBusinessException(Throwable throwable, Integer noError, Object... args) {

    super.throwBusinessException(throwable, noError, args);
  }
コード例 #5
0
  @Override
  public void throwBusinessException(BusinessError businessError, Object... args) {

    super.throwBusinessException(businessError, args);
  }
コード例 #6
0
  @Override
  public void error(String message, Throwable throwable) {

    super.error(message, throwable);
  }
コード例 #7
0
  @Override
  public void warn(String message, Serializable... args) {

    super.warn(message, args);
  }
コード例 #8
0
  @Override
  public void info(String message, Serializable... args) {

    super.info(message, args);
  }
コード例 #9
0
  @Override
  public void debug(String message, Serializable... args) {

    super.debug(message, args);
  }