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

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

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

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

	public ProfileNotFoundException() {
	}

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy