dev.galasa.zos3270.ErrorTextFoundException Maven / Gradle / Ivy
The newest version!
/*
* Copyright contributors to the Galasa project
*
* SPDX-License-Identifier: EPL-2.0
*/
package dev.galasa.zos3270;
public class ErrorTextFoundException extends Zos3270Exception {
private static final long serialVersionUID = 1L;
private final int errorId;
public ErrorTextFoundException(String message, int errorId) {
super(message);
this.errorId = errorId;
}
public int getErrorId() {
return this.errorId;
}
}