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

com.finbourne.notifications.extensions.ApiConfigurationException Maven / Gradle / Ivy

There is a newer version: 2.0.68
Show newest version
package com.finbourne.notifications.extensions;

/**
* Exception on failing to build a valid {@link ApiConfiguration}
*
*/
public class ApiConfigurationException extends Exception{

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy