com.causecode.fileuploader.ProviderNotFoundException.groovy Maven / Gradle / Ivy
/*
* Copyright (c) 2016, CauseCode Technologies Pvt Ltd, India.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or
* without modification, are not permitted.
*/
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)
}
}