Ejemplo n.º 1
0
  @Override
  public void throwBusinessException(
      Throwable throwable, BusinessError businessError, Object... args) {

    super.throwBusinessException(throwable, businessError, args);
  }
Ejemplo n.º 2
0
 @Override
 public void throwIfNull(Object object, BusinessException businessException, Object... object2) {
   super.throwIfNull(object, businessException, object2);
 }
Ejemplo n.º 3
0
  @Override
  public void throwBusinessException(
      BusinessException businessException, Throwable throwable, Object... args) {

    super.throwBusinessException(businessException, throwable, args);
  }
Ejemplo n.º 4
0
  @Override
  public void throwBusinessException(Throwable throwable, Integer noError, Object... args) {

    super.throwBusinessException(throwable, noError, args);
  }
Ejemplo n.º 5
0
  @Override
  public void throwBusinessException(BusinessError businessError, Object... args) {

    super.throwBusinessException(businessError, args);
  }
Ejemplo n.º 6
0
  @Override
  public void error(String message, Throwable throwable) {

    super.error(message, throwable);
  }
Ejemplo n.º 7
0
  @Override
  public void warn(String message, Serializable... args) {

    super.warn(message, args);
  }
Ejemplo n.º 8
0
  @Override
  public void info(String message, Serializable... args) {

    super.info(message, args);
  }
Ejemplo n.º 9
0
  @Override
  public void debug(String message, Serializable... args) {

    super.debug(message, args);
  }