com.imsweb.seerapi.client.NotAuthorizedException 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 NotAuthorizedException extends SeerApiException {
public NotAuthorizedException() {
super();
}
public NotAuthorizedException(String message) {
super(message);
}
public NotAuthorizedException(String message, Throwable cause) {
super(message, cause);
}
public NotAuthorizedException(Throwable cause) {
super(cause);
}
}