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

com.microsoft.bingads.InternalException Maven / Gradle / Ivy

package com.microsoft.bingads;

/**
 * This exception will be thrown if the SDK cannot perform some task due to an internal error.
 */
public class InternalException extends RuntimeException {
    public InternalException(Throwable cause) {
        super("Internal BingAds SDK exception has occured", cause);
    }

    public InternalException(String message) {
        super("Internal BingAds SDK exception has occured: " + message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy