01: package murlen.util.fscript;
02:
03: /**
04: * <p>FSUnsupportedException - Exception rasied to indicate that a particular
05: * method/variable is not implemented by extensions</p>
06: * <p>
07: * <I>Copyright (C) 2000 murlen.</I></p>
08: * <p>
09: * This library is free software; you can redistribute it and/or
10: * modify it under the terms of the GNU Library General Public
11: * License as published by the Free Software Foundation; either
12: * version 2 of the License, or (at your option) any later version.</p>
13: * <p>
14: * This library is distributed in the hope that it will be useful,
15: * but WITHOUT ANY WARRANTY; without even the implied warranty of
16: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17: * Library General Public License for more details.</p>
18: *
19: * <p>You should have received a copy of the GNU Library General Public
20: * License along with this library; if not, write to the Free
21: * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA </p>
22: *
23: * @author murlen
24: */
25:
26: public class FSUnsupportedException extends FSException {
27: public FSUnsupportedException() {
28: }
29:
30: /**
31: *Exception specifically used to indicate that extensions/subclasses
32: *do not support the given function/variable name.
33: *@param name the name of function/variable not supported
34: **/
35: public FSUnsupportedException(String name) {
36: super ("Unrecognized External: " + name);
37: }
38: }
|