/******************************************************************************* * Copyright (c) 2012 Torkild U. Resheim 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: * Torkild U. Resheim - initial API and implementation *******************************************************************************/ package org.eclipse.mylyn.docs.epub.core; public class ValidationException extends RuntimeException { public ValidationException() { super(); } public ValidationException(String message, Throwable cause) { super(message, cause); } public ValidationException(String message) { super(message); } public ValidationException(Throwable cause) { super(cause); } private static final long serialVersionUID = -7258120019965019745L; }