blob: 8348b1f8281cf624ae1c66aee3c7a6ca3cbd3a9c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 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.jface.text;
/**
* Indicates the attempt to access a non-existing position.
* The attempt has been performed on a text store such as a document or string.
*/
public class BadLocationException extends Exception {
/**
* Creates a new bad location exception.
*/
public BadLocationException() {
super();
}
/**
* Creates a new bad location exception.
*
* @param message the exception message
*/
public BadLocationException(String message) {
super(message);
}
}