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

com.payneteasy.superfly.client.exception.CollectionException Maven / Gradle / Ivy

There is a newer version: 1.7-32
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy