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

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

package com.causecode.fileuploader

/**
 * Exception class
 * This exception is thrown when CDN configuration related error is encountered.
 */
class StorageConfigurationException extends Exception {

    StorageConfigurationException(String msg) {
        super(msg)
    }

    StorageConfigurationException(String msg, Throwable cause) {
        super(msg, cause)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy