blob: f2e8b9b51cacbceff4461cf18bec8e7ff414b27f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012-2014 EclipseSource Muenchen GmbH and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Max Hohenegger - initial API and implementation
******************************************************************************/
package org.eclipse.emf.emfstore.internal.client.model.exceptions;
import org.eclipse.emf.emfstore.server.exceptions.ESException;
/**
* If the login fails, this exception will be thrown. This is usually the case if the user
* cancels the share dialog.
*
* @author Max Hohenegger
*/
@SuppressWarnings("serial")
public class LoginCanceledException extends ESException {
/**
* Constructor.
*
* @param message reason why this exception will be thrown
*/
public LoginCanceledException(String message) {
super(message);
}
}