/****************************************************************************** * Product: Adempiere ERP & CRM Smart Business Solution * * Copyright (C) 2008 SC ARHIPAC SERVICE SRL. All Rights Reserved. * * This program is free software; you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * * with this program; if not, write to the Free Software Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * *****************************************************************************/ package org.adempiere.exceptions; import java.sql.Timestamp; import org.compiere.model.MRefList; import org.compiere.model.X_C_DocType; import org.compiere.util.Env; /** * Period Closed Exception.
* This exception is throw by * {@link org.compiere.model.MPeriod#testPeriodOpen(java.util.Properties, Timestamp, int, int)} and * {@link org.compiere.model.MPeriod#testPeriodOpen(java.util.Properties, Timestamp, String, int)} methods. * @author Teo Sarca, SC ARHIPAC SERVICE SRL * @author victor.perez@e-evolution.com, e-Evolution http://www.e-evolution.com *
  • FR [ 2520591 ] Support multiples calendar for Org * @see https://sourceforge.net/p/adempiere/feature-requests/631/ * */ public class PeriodClosedException extends AdempiereException { /** * generated serial id */ private static final long serialVersionUID = -2798371272365454799L; /** * @param dateAcct * @param docBaseType */ public PeriodClosedException(Timestamp dateAcct, String docBaseType) { super("@PeriodClosed@ @Date@="+dateAcct+", @DocBaseType@=" +MRefList.getListName(Env.getCtx(), X_C_DocType.DOCBASETYPE_AD_Reference_ID, docBaseType) ); } }