All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.checkmarx.sdk.exception.SCARuntimeException Maven / Gradle / Ivy

There is a newer version: 0.1.33
Show newest version
package com.checkmarx.sdk.exception;

public class SCARuntimeException extends RuntimeException {

    public SCARuntimeException() {
    }

    public SCARuntimeException(String message) {
        super(message);
    }

    public SCARuntimeException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy