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

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

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

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

	public KeyringAlreadyExistsException() {
	}

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy