All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.snowflake.ingest.utils.BackOffException Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
/*
 * Copyright (c) 2012-2017 Snowflake Computing Inc. All rights reserved.
 */

package net.snowflake.ingest.utils;

/**
 * BackOffException - Exception thrown when we have to back off
 *
 * @author obabarinsa
 */
public class BackOffException extends RuntimeException {
  public BackOffException() {
    super();
  }

  public BackOffException(String message) {
    super(message);
  }

  public BackOffException(String message, Throwable cause) {
    super(message, cause);
  }

  public BackOffException(Throwable cause) {
    super(cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy