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

api_assured.exceptions.JavaUtilitiesException Maven / Gradle / Ivy

There is a newer version: 1.6.9
Show newest version
package api_assured.exceptions;

/**
 * This class represents an exception that is thrown when an error occurs in JavaUtilities.
 */
public class JavaUtilitiesException extends RuntimeException {

    /**
     * Constructs a JavaUtilitiesException with the specified error message.
     * @param errorMessage The error message to be associated with this exception.
     */
    public JavaUtilitiesException(String errorMessage) {super(errorMessage);}

    public JavaUtilitiesException(RuntimeException errorMessage) {super(errorMessage);}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy