/* * $Id: StudyPathException.java,v 1.1 2003/09/08 15:50:35 anders Exp $ * * Copyright (C) 2003 Agura IT. All Rights Reserved. * * This software is the proprietary information of Agura IT AB. * Use is subject to license terms. * */ package se.idega.idegaweb.commune.accounting.school.business; import se.idega.idegaweb.commune.accounting.business.AccountingException; /** * Exception for data input errors and technical errors in StudyPathBusiness. * <p> * Last modified: $Date: 2003/09/08 15:50:35 $ by $Author: anders $ * * @author Anders Lindman * @version $Revision: 1.1 $ */ public class StudyPathException extends AccountingException { /** * @see se.idega.idegaweb.commune.accounting.business.AccountingException */ public StudyPathException(String textKey, String defaultText) { super(textKey, defaultText); } }