/* * $Id: NoSuchTagException.java,v 1.2 2002/04/06 19:11:14 tryggvil Exp $ * * Copyright (C) 2001 Idega hf. All Rights Reserved. * * This software is the proprietary information of Idega hf. * Use is subject to license terms. * */ package is.idega.idegaweb.campus.exception; /** * * @author <a href="mailto:palli@idega.is">Pall Helgason</a> * @version 1.0 */ public class NoSuchTagException extends Exception { public NoSuchTagException(String exceptionText) { super(exceptionText); } }