Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7d183703bffad0699b6eacdef52d9499d8f2b8f3 (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
package org.eclipse.jdt.core.jdom;
/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved.
 */
import org.eclipse.jdt.internal.core.*;

/**
 * Unchecked exception thrown when an illegal manipulation of the JDOM is 
 * performed, or when an attempt is made to access/set an attribute of a
 * JDOM node that source indexes cannot be determined for (in case the source
 * was syntactically incorrect).
 */
public class DOMException extends RuntimeException {
/**
 * Creates a new exception with no detail message.
 */
public DOMException() {}
/**
 * Creates a new exception with the given detail message.
 *
 * @param message the deatil message
 */
public DOMException(String message) {
	super(message);
}
}

Back to the top