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

dev.galasa.zossecurity.UseridNotFoundException Maven / Gradle / Ivy

The newest version!
/*
 * Copyright contributors to the Galasa project
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package dev.galasa.zossecurity;

public class UseridNotFoundException extends ZosSecurityManagerException {
	private static final long serialVersionUID = 1L;

	public UseridNotFoundException() {
	}

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy