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

org.eclipse.wst.common.frameworks.internal.SaveFailedException Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2001, 2005 IBM Corporation 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:
 * IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.wst.common.frameworks.internal;

/**
 * Runtime exception that could get thrown during save of an edit model; clients should use
 * {@link #getConcatenatedMessages}to get all the messages of this and all nested exceptions to
 * report the failure.
 */
public class SaveFailedException extends WrappedRuntimeException {
	/**
	 * Comment for serialVersionUID
	 */
	private static final long serialVersionUID = -4640018901910731240L;

	/**
	 * SaveFailedException constructor comment.
	 */
	public SaveFailedException() {
		super();
	}

	/**
	 * SaveFailedException constructor comment.
	 * 
	 * @param e
	 *            java.lang.Exception
	 */
	public SaveFailedException(Exception e) {
		super(e);
	}

	/**
	 * SaveFailedException constructor comment.
	 * 
	 * @param s
	 *            java.lang.String
	 */
	public SaveFailedException(String s) {
		super(s);
	}

	/**
	 * SaveFailedException constructor comment.
	 * 
	 * @param s
	 *            java.lang.String
	 * @param e
	 *            java.lang.Exception
	 */
	public SaveFailedException(String s, Exception e) {
		super(s, e);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy