001    // Copyright 2007 Regents of the University of California.  May be used 
002    // under the terms of the revised BSD license.  See LICENSING for details.
003    package org.joe_e.file;
004    
005    import org.joe_e.Powerless;
006    
007    /**
008     * Signals an invalid filename.
009     */
010    public class InvalidFilenameException extends RuntimeException 
011                                            implements Powerless {
012        static private final long serialVersionUID = 1L;
013    
014        /**
015         * Constructs an instance.
016         */
017        public InvalidFilenameException() {}
018    }