blob: 2c04a93f94dcfaf1b5923fd2e933ab87117ebdc2 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.fineract.portfolio.savings.exception;
import org.apache.fineract.infrastructure.core.exception.AbstractPlatformDomainRuleException;
public class PostInterestAsOnDateException extends AbstractPlatformDomainRuleException {
public enum PostInterestAsOnExceptionType {
FUTURE_DATE, VALID_DATE, ACTIVATION_DATE, LAST_TRANSACTION_DATE;
public String errorMessage() {
if (name().toString().equalsIgnoreCase("FUTURE_DATE")) {
return "Cannot Post Interest in future Dates";
} else if (name().toString().equalsIgnoreCase("VALID_DATE")) {
return "Please Pass a valid date";
} else if (name().toString().equalsIgnoreCase("ACTIVATION_DATE")) {
return "Post Interest Date must be after the Activation date";
} else if (name().toString().equalsIgnoreCase("LAST_TRANSACTION_DATE")) {
return "Cannot Post Interest before last transaction date";
}
return name().toString();
}
public String errorCode() {
if (name().toString().equalsIgnoreCase("FUTURE_DATE")) {
return "error.msg.futureDate";
} else if (name().toString().equalsIgnoreCase("VALID_DATE")) {
return "error.msg.nullDatePassed";
} else if (name().toString().equalsIgnoreCase("ACTIVATION_DATE")) {
return "error.msg.before activation date";
} else if (name().toString().equalsIgnoreCase("LAST_TRANSACTION_DATE")) {
return "error.msg.countInterest";
}
return name().toString();
}
}
public PostInterestAsOnDateException(final PostInterestAsOnExceptionType reason) {
super(reason.errorCode(), reason.errorMessage());
}
}