01: /*
02: * Sun Public License Notice
03: *
04: * The contents of this file are subject to the Sun Public License
05: * Version 1.0 (the "License"). You may not use this file except in
06: * compliance with the License. A copy of the License is available at
07: * http://www.sun.com/
08: *
09: * The Original Code is NetBeans. The Initial Developer of the Original
10: * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun
11: * Microsystems, Inc. All Rights Reserved.
12: */
13:
14: package org.netbeans.editor;
15:
16: import javax.swing.text.BadLocationException;
17:
18: /**
19: * Attempt to insert or remove from the guarded block has been done.
20: *
21: * @version 1.0
22: * @author Miloslav Metelka
23: */
24:
25: public class GuardedException extends BadLocationException {
26:
27: static final long serialVersionUID = -8139460534188487509L;
28:
29: public GuardedException(String s, int offs) {
30: super(s, offs);
31: }
32:
33: }
|