com.bertramlabs.plugins.karman.exceptions.ProviderNotFoundException.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of karman-core Show documentation
Show all versions of karman-core Show documentation
Karman is a standardized Cloud File Management Interface for Groovy. It provides a unified means and simple DSL for accessing files on the cloud via extensible StorageProviders
package com.bertramlabs.plugins.karman.exceptions
class ProviderNotFoundException extends Exception {
public ProviderNotFoundException() {
super('The Requested Storage Provider was not found')
}
public ProviderNotFoundException(String provider) {
super("The Requested Storage Provider was not found: ${provider}")
}
}