All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ibankapp.base.security.BaseSecurityException Maven / Gradle / Ivy

The newest version!
/*
 * iBankApp
 *
 * License : Apache License,Version 2.0, January 2004
 *
 * See the LICENSE file in English or LICENSE.zh_CN in chinese
 * in the root directory or .
 */

package org.ibankapp.base.security;

import org.ibankapp.base.exception.BaseException;
import org.ibankapp.base.exception.PropertyUtil;

/**
 * 持久化异常
 *
 * @author ibankapp
 * @author esailor
 * @since 1.0.0
 */
public class BaseSecurityException extends BaseException {

  private static final String MESSAGE_FILE = "base_security_message.properties";

  static {
    PropertyUtil.load(MESSAGE_FILE);
  }

  BaseSecurityException(String messageId) {
    super(messageId);
  }

  public BaseSecurityException(String messageId, String param) {
    super(messageId, param);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy