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

io.signpath.signpathclient.SignPathClientException Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
package io.signpath.signpathclient;

/**
 *
 * @author volodymyr.bobko
 */
public class SignPathClientException extends RuntimeException {
    
    public SignPathClientException(String errorMessage, Throwable err) {
        super(errorMessage, err);
    }
    
    public SignPathClientException(String errorMessage) {
        super(errorMessage);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy