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

ru.yandex.qatools.camelot.api.error.RepositoryUnreachableException Maven / Gradle / Ivy

There is a newer version: 2.5.4
Show newest version
package ru.yandex.qatools.camelot.api.error;

/**
 * @author Ilya Sadykov
 */
public class RepositoryUnreachableException extends RuntimeException {
    public RepositoryUnreachableException(Throwable cause) {
        super(cause);
    }

    public RepositoryUnreachableException(String message, Throwable cause) {
        super(message, cause);
    }

    public RepositoryUnreachableException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy