blob: 9c94418ef86ea3f5049d55315a9e69167b9cd697 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2009 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.jdt.internal.codeassist.select;
import org.eclipse.jdt.internal.compiler.lookup.*;
public class SelectionNodeFound extends RuntimeException {
public Binding binding;
public boolean isDeclaration;
private static final long serialVersionUID = -7335444736618092295L; // backward compatible
public SelectionNodeFound() {
this(null, false); // we found a problem in the selection node
}
public SelectionNodeFound(Binding binding) {
this(binding, false);
}
public SelectionNodeFound(Binding binding, boolean isDeclaration) {
this.binding = binding;
this.isDeclaration = isDeclaration;
}
}