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

com.google.api.ads.common.lib.conf.ConfigurationLoadException Maven / Gradle / Ivy

Go to download

Client library for Java for accessing ads APIs including DFP. If you want to use this library, you must also include another Maven artifact to specify which framework you would like to use it with. For example, to use DFP with Axis, you should include the "dfp-axis" artifact.

There is a newer version: 5.7.0
Show newest version
// Copyright 2012 Google Inc. All Rights Reserved.

package com.google.api.ads.common.lib.conf;

/**
 * Exception thrown when configuration could not be loaded.
 */
public class ConfigurationLoadException extends Exception {

  /**
   * Constructor.
   *
   * @param message the message
   * @param cause the cause
   */
  public ConfigurationLoadException(String message, Throwable cause) {
    super(message, cause);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy