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

dev.galasa.cicsts.cicsresource.CicsBundleResourceException Maven / Gradle / Ivy

There is a newer version: 0.38.0
Show newest version
/*
 * Copyright contributors to the Galasa project
 */
package dev.galasa.cicsts.cicsresource;

public class CicsBundleResourceException extends CicsResourceManagerException {
    private static final long serialVersionUID = 1L;

    public CicsBundleResourceException() {
    }

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

    public CicsBundleResourceException(Throwable cause) {
        super(cause);
    }

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

    public CicsBundleResourceException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy