blob: f2b72b29a7b4d37835f8abe2731ed22d06a3e6ed [file] [log] [blame]
/*******************************************************************************
* 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 Bros (Mia-Software) - Bug 361612 - New core for new version of the Facet metamodel
*******************************************************************************/
package org.eclipse.modisco.facet.efacet.core.internal.exception;
/**
* Happens when there is an error evaluating a Facet's conformance typed element.
*
* @since 0.2
*/
public class FacetConformanceEvaluationException extends Exception {
private static final long serialVersionUID = -5306430483154103388L;
public FacetConformanceEvaluationException(final String message) {
super(message);
}
public FacetConformanceEvaluationException(final String message, final Throwable cause) {
super(message, cause);
}
public FacetConformanceEvaluationException(final Throwable cause) {
super(cause);
}
}