Skip to main content
summaryrefslogtreecommitdiffstats
blob: 044c60db565ae76ca11d9d93e523f9cf59b0a8b9 (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
30
31
32
33
34
35
36
37
38
39
/*******************************************************************************
 * Copyright (c) 2003, 2004 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 Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.common.internal.emf.utilities;


/**
 * <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>
 */
// This class was, originally, copied directly from com.ibm.itp.common.
// It was copied to our own package just to minimize minor dependencies
// on other packages and internal APIs.
class AssertionFailedException extends RuntimeException {
	/**
	 * Constructs a new exception.
	 */
	public AssertionFailedException() {
	}

	/**
	 * Constructs a new exception with the given message.
	 */
	public AssertionFailedException(String detail) {
		super(detail);
	}
}

Back to the top