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

com.nhl.link.rest.client.LinkRestClientException Maven / Gradle / Ivy

There is a newer version: 2.13
Show newest version
package com.nhl.link.rest.client;

/**
 * @since 2.0
 */
public class LinkRestClientException extends RuntimeException {

	private static final long serialVersionUID = 8027409723345873322L;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy