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

com.bertramlabs.plugins.karman.exceptions.ProviderNotFoundException.groovy Maven / Gradle / Ivy

Go to download

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

There is a newer version: 2.3.2
Show newest version
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}")
  } 
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy