blob: f238ec2753ffcd708de5f4d20d32c4a79d7789b4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ltk.internal.core.refactoring;
/**
* <code>AssertionFailedException</code> is a runtime exception thrown
* by some of the methods in <code>Assert</code>.
* <p>
* This class is not declared public to prevent some misuses; programs that catch
* or otherwise depend on assertion failures are susceptible to unexpected
* breakage when assertions in the code are added or removed.
* </p>
*/
/* package */
class AssertionFailedException extends RuntimeException {
/** This class is not intended to be serialized. */
private static final long serialVersionUID= 1L;
/**
* Constructs a new exception.
*/
public AssertionFailedException() {
super();
}
/**
* Constructs a new exception with the given message.
*
* @param detail the detailed message
*/
public AssertionFailedException(String detail) {
super(detail);
}
}