blob: 4957d665f0aae1f26bea745e666019d96ecdfc26 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002-2005 IBM Corporation 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:
* IBM - Initial API and implementation
*******************************************************************************/
package org.eclipse.wst.wsi.internal.core.analyzer;
/**
* Exception for Assertion Pass.
*
* @author gturrell
*/
public class AssertionPassException extends Exception
{
/**
* Comment for <code>serialVersionUID</code>
*/
private static final long serialVersionUID = 3257285842283541810L;
/**
* Constructor for AssertionPAssException.
*/
public AssertionPassException()
{
super();
}
/**
* Constructor for AssertionPAssException.
* @param arg0 the detail message.
*/
public AssertionPassException(String arg0)
{
super(arg0);
}
}