com.payneteasy.superfly.client.exception.CollectionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of superfly-client Show documentation
Show all versions of superfly-client Show documentation
Contains classes used to use Superfly facilities by clients
package com.payneteasy.superfly.client.exception;
/**
* Thrown when a problem occurs during collection.
*
* @author Roman Puchkovskiy
*/
public class CollectionException extends Exception {
public CollectionException() {
}
public CollectionException(String message) {
super(message);
}
public CollectionException(Throwable cause) {
super(cause);
}
public CollectionException(String message, Throwable cause) {
super(message, cause);
}
}