com.imsweb.seerapi.client.SeerApiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of seerapi-client-java Show documentation
Show all versions of seerapi-client-java Show documentation
API mapping for SEER*API in Java
/*
* Copyright (C) 2015 Information Management Services, Inc.
*/
package com.imsweb.seerapi.client;
public class SeerApiException extends RuntimeException {
public SeerApiException() {
super();
}
public SeerApiException(String message) {
super(message);
}
public SeerApiException(String message, Throwable cause) {
super(message, cause);
}
public SeerApiException(Throwable cause) {
super(cause);
}
}