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

cn.featherfly.common.exception.StandardAppException Maven / Gradle / Ivy

package cn.featherfly.common.exception;

import java.util.Locale;



/**
 * 

* 应用异常(高层次) *

* * @author 钟冀 * */ public class StandardAppException extends StandardResourceBundleException{ private static final long serialVersionUID = -7005360573113235374L; /** * 构造方法 */ public StandardAppException() { } /** * 构造方法 * @param message 信息 * @param argus 信息绑定参数 * @param locale locale * @param ex 异常 */ public StandardAppException(String message, Object[] argus, Locale locale, Throwable ex) { super(message, argus, locale, ex); } /** * 构造方法 * @param message 信息 * @param locale locale * @param ex 异常 */ public StandardAppException(String message, Locale locale, Throwable ex) { super(message, locale, ex); } /** * 构造方法 * @param message 信息 * @param argus 信息绑定参数 * @param ex 异常 */ public StandardAppException(String message, Object[] argus, Throwable ex) { super(message, argus, ex); } /** * 构造方法 * @param message 信息 * @param ex 异常 */ public StandardAppException(String message, Throwable ex) { super(message, ex); } /** * 构造方法 * @param message 信息 * @param argus 信息绑定参数 * @param locale locale */ public StandardAppException(String message, Object[] argus, Locale locale) { super(message, argus, locale); } /** * 构造方法 * @param message 信息 * @param argus 信息绑定参数 */ public StandardAppException(String message, Object[] argus) { super(message, argus); } /** * 构造方法 * @param message 信息 * @param locale locale */ public StandardAppException(String message, Locale locale) { super(message, locale); } /** * 构造方法 * @param message 信息 */ public StandardAppException(String message) { super(message); } /** * 构造方法 * @param ex 异常 */ public StandardAppException(Throwable ex) { super(ex); } // /** // * 构造方法 // * @param messageCode 常量码与信息映射对象 // */ // public StandardAppException(MessageCode messageCode) { // super(messageCode); // } // // /** // * 构造方法 // * @param messageCode 常量码与信息映射对象 // * @param ex 异常 // */ // public StandardAppException(MessageCode messageCode, Throwable ex) { // super(messageCode, ex); // } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy