org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/core/exception/ValidationException.java
author tasneems@symbian.org
Wed, 27 Jan 2010 15:05:37 -0800
changeset 50 0560e98b9bf6
permissions -rw-r--r--
Added widget project nature and WRT validators

/**
 * Copyright (c) 2009 Symbian Foundation and/or its subsidiary(-ies).
 * All rights reserved.
 * This component and the accompanying materials are made available
 * under the terms of the License "Eclipse Public License v1.0"
 * which accompanies this distribution, and is available
 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
 *
 * Initial Contributors:
 * Symbian Foundation - initial contribution.
 * Contributors:
 * Description:
 * Overview:
 * Details:
 * Platforms/Drives/Compatibility:
 * Assumptions/Requirement/Pre-requisites:
 * Failures and causes:
 */

package org.symbian.tools.wrttools.core.exception;

public class ValidationException extends BaseException {
	/**
	 *  @author Sailaja Duvvuri
	 */
	private static final long serialVersionUID = -1598160901494205202L;

	/**
	 * Contructor that takes a <code>Throwable</code> for nesting.
	 * @param pNestedException <code>Throwable</code> object to nest.
	 */
	public ValidationException(Throwable pNestedException) {
		super(pNestedException);
	}

	/**
	 *
	 * @param pMessage
	 * @param pNestedException
	 */
	public ValidationException(String pMessage, Throwable pNestedException) {
		super(pMessage, pNestedException);
	}

	/**
	 *
	 * @param pMessage
	 */
	public ValidationException(String pMessage) {
		super(pMessage);
	}
}