01: /*
02: * Author: Chris Seguin
03: *
04: * This software has been developed under the copyleft
05: * rules of the GNU General Public License. Please
06: * consult the GNU General Public License for more
07: * details about use and distribution of this software.
08: */
09: package org.acm.seguin.refactor;
10:
11: /**
12: * Description of the Class
13: *
14: *@author Chris Seguin
15: */
16: public class RefactoringException extends Exception {
17: /**
18: * Constructor for the RefactoringException object
19: *
20: *@param msg Description of Parameter
21: */
22: public RefactoringException(String msg) {
23: super(msg);
24: }
25: }
|