/* * Copyright (c) 2014 Dennis Fischer. * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Public License v3.0+ * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/gpl.html * * Contributors: Dennis Fischer */ package de.chaosfisch.google.account; class AuthenticationException extends Exception { private static final long serialVersionUID = -5334150826953275047L; public AuthenticationException(final Exception e) { super(e); } public AuthenticationException(final String msg) { super(msg); } }