com.cx.restclient.exception.CxClientException 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 05/02/2018.
*/
public class CxClientException extends RuntimeException {
public CxClientException() {
super();
}
public CxClientException(String message) {
super(message);
}
public CxClientException(String message, Throwable cause) {
super(message, cause);
}
public CxClientException(Throwable cause) {
super(cause);
}
}