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