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

edu.stanford.protege.webprotege.user.UserNameAlreadyExistsException Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show 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 UserNameAlreadyExistsException extends UserRegistrationException implements Serializable { private String username; private UserNameAlreadyExistsException() { } public UserNameAlreadyExistsException(String username) { super("User name already taken: " + username); this.username = username; } public String getUsername() { return username; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy