blob: 358efc359e6045815ef1fa766bc1ded3095f4365 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Tasktop Technologies and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.discovery.core.model;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.mylyn.internal.discovery.core.DiscoveryCore;
/**
* Indicate that a validation has occurred on the model.
*
* @author David Green
*/
public class ValidationException extends CoreException {
private static final long serialVersionUID = -7542361242327905294L;
public ValidationException(String message) {
super(new Status(IStatus.ERROR, DiscoveryCore.ID_PLUGIN, message));
}
}