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

dev.galasa.artifact.TestBundleResourceException Maven / Gradle / Ivy

There is a newer version: 0.38.0
Show newest version
/*
 * Copyright contributors to the Galasa project
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package dev.galasa.artifact;

import dev.galasa.ManagerException;

public class TestBundleResourceException extends ManagerException {
    private static final long serialVersionUID = 1L;

    public TestBundleResourceException() {
    }

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

    public TestBundleResourceException(Throwable throwable) {
        super(throwable);
    }

    public TestBundleResourceException(String message, Throwable throwable) {
        super(message, throwable);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy