blob: bde423118f40d77eda5cefe48350a7dd4195b8e6 [file] [log] [blame]
/**
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package org.mifosplatform.portfolio.savings.exception;
import org.mifosplatform.infrastructure.core.exception.AbstractPlatformServiceUnavailableException;
import org.mifosplatform.portfolio.savings.DepositAccountType;
import org.mifosplatform.portfolio.savings.service.SavingsEnumerations;
/**
* A {@link RuntimeException} thrown when deposit account transaction not
* allowed.
*/
public class DepositAccountTransactionNotAllowedException extends AbstractPlatformServiceUnavailableException {
public DepositAccountTransactionNotAllowedException(final Long accountId, final String action, final DepositAccountType type) {
super("error.msg." + type.resourceName() + ".account.trasaction." + action + ".notallowed", SavingsEnumerations.depositType(type)
.getValue() + "account " + action + " transaction not allowed with account identifier " + accountId, accountId);
}
}