View Javadoc
1 /* 2 Bloof - visualize the evolution of your software project 3 Copyright ( C ) 2003 Lukasz Pekacki <lukasz@pekacki.de> 4 http://bloof.sf.net/ 5 6 This file was part of JavaCVS by Nicholas Allen ( nallen@freenet.co.uk ). 7 8 This program is free software; you can redistribute it and/or modify it 9 under the terms of the GNU General Public License. 10 11 This program is distributed in the hope that it will be useful, 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details. 15 16 You should have received a copy of the GNU General Public License along with 17 this program; if not, write to the Free Software Foundation, Inc., 18 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 19 20 $RCSfile: InvalidRepositoryLocationException.java,v $ 21 Created on $Date: 2003/05/30 13:52:21 $ 22 */ 23 24 package net.sf.bloof.scm.cvsplugin; 25 26 /*** 27 * This exception is thrown when the user tries to construct a RepositoryLocation 28 * object and the format of the location is invalid. 29 * @author Nicholas Allen 30 * @author Lukasz Pekacki 31 */ 32 public class InvalidRepositoryLocationException extends CvsException { 33 /*** 34 * @see java.lang.Throwable#Throwable( String ) 35 */ 36 public InvalidRepositoryLocationException( String aMessage ) { 37 super( aMessage ); 38 } 39 }

This page was automatically generated by Maven