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

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

The newest version!

package cn.featherfly.common.exception;

import java.util.Locale;

/**
 * 

* InitException *

*

* 2019-08-07 *

* . * * @author zhongj * @since 1.7.3 */ public class InitException extends LocalizedException { /** The Constant serialVersionUID. */ private static final long serialVersionUID = 1456430559125327924L; /** * Instantiates a new inits the exception. */ public InitException() { super(); } /** * Instantiates a new inits the exception. * * @param message the message * @param locale the locale * @param ex the ex */ public InitException(String message, Locale locale, Throwable ex) { super(message, locale, ex); } /** * Instantiates a new inits the exception. * * @param message message * @param locale locale */ public InitException(String message, Locale locale) { super(message, locale); } /** * Instantiates a new inits the exception. * * @param message message * @param args args * @param locale locale * @param ex ex */ public InitException(String message, Object[] args, Locale locale, Throwable ex) { super(message, args, locale, ex); } /** * Instantiates a new inits the exception. * * @param message the message * @param args the args * @param locale the locale */ public InitException(String message, Object[] args, Locale locale) { super(message, args, locale); } /** * Instantiates a new inits the exception. * * @param message the message * @param args the args * @param ex the ex */ public InitException(String message, Object[] args, Throwable ex) { super(message, args, ex); } /** * Instantiates a new inits the exception. * * @param message the message * @param args the args */ public InitException(String message, Object[] args) { super(message, args); } /** * Instantiates a new inits the exception. * * @param message the message * @param ex the ex */ public InitException(String message, Throwable ex) { super(message, ex); } /** * Instantiates a new inits the exception. * * @param message the message */ public InitException(String message) { super(message); } /** * Instantiates a new inits the exception. * * @param ex the ex */ public InitException(Throwable ex) { super(ex); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy