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

com.katalon.platform.api.exception.ResourceException Maven / Gradle / Ivy

There is a newer version: 1.0.21
Show newest version
package com.katalon.platform.api.exception;

public class ResourceException extends PlatformException {
    private static final long serialVersionUID = 1L;
    
    public ResourceException(String message) {
        super(message);
    }

    public ResourceException(String message, Exception rootCause) {
        super(message, rootCause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy