edu.stanford.protege.webprotege.user.UserEmailAlreadyExistsException Maven / Gradle / Ivy
The newest version!
package edu.stanford.protege.webprotege.user;
import java.io.Serializable;
/**
* Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 05/06/2012
*/
public class UserEmailAlreadyExistsException extends UserRegistrationException implements Serializable {
private String emailAddress;
private UserEmailAlreadyExistsException() {
}
public UserEmailAlreadyExistsException(String emailAddress) {
super("User email address already exists: " + emailAddress);
this.emailAddress = emailAddress;
}
public String getEmailAddress() {
return emailAddress;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy