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

com.causecode.fileuploader.ProviderNotFoundException.groovy Maven / Gradle / Ivy

The newest version!
package com.causecode.fileuploader

/**
 * Exception class
 * This exception is thrown when any operation that requires CDNProvider is unable to find a provider.
 */
class ProviderNotFoundException extends Exception {

    ProviderNotFoundException(String message) {
        super(message)
    }

    ProviderNotFoundException(String message, Throwable throwable) {
        super(message, throwable)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy