01: package antlr; 02: 03: /* ANTLR Translator Generator 04: * Project led by Terence Parr at http://www.cs.usfca.edu 05: * Software rights: http://www.antlr.org/license.html 06: */ 07: 08: class FileCopyException extends java.io.IOException { 09: public FileCopyException(String msg) { 10: super(msg); 11: } 12: }