package edu.asu.spring.quadriga.exceptions; public class UsernameExistsException extends QuadrigaException { /** * */ private static final long serialVersionUID = 4858857908089291811L; public UsernameExistsException() { super(); // TODO Auto-generated constructor stub } public UsernameExistsException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } public UsernameExistsException(String message) { super(message); // TODO Auto-generated constructor stub } public UsernameExistsException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } }