blob: c377bd6e41312d63c2521ef968d9d9e92e4bbd54 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2010 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:
* Fabien Giquel (Mia-Software) - Bug 342856 - improve Discoverers implementation
*******************************************************************************/
package org.eclipse.modisco.java.discoverer.tests;
public class ValidationException extends RuntimeException {
private static final long serialVersionUID = 3105718445594551708L;
public ValidationException(final String message) {
super(message);
}
}