blob: 16fb744cd2b5ad3a93aa949d2cdbb84d5ff436d2 [file] [log] [blame]
/***************************************************************************************************
* Copyright (c) 2020 IBM Corporation. All rights reserved. This program and the
* accompanying materials are made available under the terms of the Eclipse Public
* License v2.0 which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors: IBM Corporation - initial API and implementation
**************************************************************************************************/
package org.eclipse.wst.common.internal.emf.utilities;
class PasswordException extends Exception {
private static final long serialVersionUID = 2613406662303316598L;
public PasswordException() {
}
public PasswordException(String message) {
super(message);
}
public PasswordException(Throwable cause) {
super(cause);
}
public PasswordException(String message, Throwable cause) {
super(message, cause);
}
public PasswordException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}