com.cx.restclient.exception.CxTokenExpiredException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cx-client-common Show documentation
Show all versions of cx-client-common Show documentation
Web client for interaction with Checkmarx SAST, SCA and OSA products
The newest version!
package com.cx.restclient.exception;
/**
* Created by Galn on 19/03/2018.
*/
public class CxTokenExpiredException extends CxClientException {
public CxTokenExpiredException() {
super();
}
public CxTokenExpiredException(String message) {
super(message);
}
public CxTokenExpiredException(String message, Throwable cause) {
super(message, cause);
}
public CxTokenExpiredException(Throwable cause) {
super(cause);
}
}