blob: 8b767c87a0378f5bdf44e088c3ed83312f119732 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.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);
}
}