Skip to main content
summaryrefslogblamecommitdiffstats
blob: 7a539f19f0419b2d9bb72fa9b93fa8e488eac96d (plain) (tree)




















                                                                                                       
/*******************************************************************************
 * Copyright (c) 2011 Mia-Software.
 * 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:
 *     Nicolas Guyomar (Mia-Software) - Bug 349569 - Need new exceptions for java query class creation
 *******************************************************************************/
package org.eclipse.emf.facet.query.java.core.internal.exceptions;

/**
 * This exception is raised whenever an URI is not a resource URI as expected
 * @since 0.2
 */
public class ResourceURIExpectedException extends Exception {

	private static final long serialVersionUID = 6891585699949077305L;

}

Back to the top