Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8b2b62195840318e5ab55149e71cba4d1bae19bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*******************************************************************************
 * Copyright (c) 2004, 2013 John Krasnay and others.
 * 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:
 *     John Krasnay - initial API and implementation
 *******************************************************************************/
package org.eclipse.vex.core.provisional.dom;

/**
 * Exception thrown when an change would have compromised document validity.
 */
public class DocumentValidationException extends RuntimeException {

	private static final long serialVersionUID = 1L;

	/**
	 * Create a new exception with the given message.
	 * 
	 * @param message
	 *            message indicating the nature of the exception
	 */
	public DocumentValidationException(final String message) {
		super(message);
	}
}

Back to the top