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

com.testfabrik.webmate.javasdk.WebmateApiClientException Maven / Gradle / Ivy

There is a newer version: 0.56
Show newest version
package com.testfabrik.webmate.javasdk;

/**
 * Generic Exception of webmate API client.
 */
public class WebmateApiClientException extends RuntimeException {
    public WebmateApiClientException(String errorMsg) {
        super(errorMsg);
    }

    public WebmateApiClientException(String errorMsg, Throwable e) {
        super(errorMsg, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy