
api_assured.exceptions.JavaUtilitiesException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Utilities Show documentation
Show all versions of Utilities Show documentation
Java Utilities library containing general use utilities
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