dev.galasa.artifact.SkeletonProcessorException Maven / Gradle / Ivy
/*
* Copyright contributors to the Galasa project
*
* SPDX-License-Identifier: EPL-2.0
*/
package dev.galasa.artifact;
import dev.galasa.ManagerException;
public class SkeletonProcessorException extends ManagerException {
private static final long serialVersionUID = 1L;
public SkeletonProcessorException() {
}
public SkeletonProcessorException(String message) {
super(message);
}
public SkeletonProcessorException(Throwable throwable) {
super(throwable);
}
public SkeletonProcessorException(String message, Throwable throwable) {
super(message, throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy