Class GFLauncherException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sun.enterprise.admin.launcher.GFLauncherException
- All Implemented Interfaces:
Serializable
The one and only type of Exception that will be thrown out of this package. I18N is wired in. If a String message is
found in the resource bundle, it will use that String. If not, it will use the String itself.
- Author:
- bnevins
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionGFLauncherException(String msg, Object... objs) GFLauncherException(String msg, Throwable t) GFLauncherException(String msg, Throwable t, Object... objs) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
GFLauncherException
- Parameters:
msg- The message is either pointing at a I18N key in the resource bundle or will be treated as a plain string.
-
GFLauncherException
- Parameters:
msg- The message is either pointing at a I18N key in the resource bundle or will be treated as a plain string that will get formatted with objs.objs- Objects used for formatting the message.
-
GFLauncherException
- Parameters:
msg- The message is either pointing at a I18N key in the resource bundle or will be treated as a plain string.t- The causing Throwable.
-
GFLauncherException
- Parameters:
msg- The message is either pointing at a I18N key in the resource bundle or will be treated as a plain string that will get formatted with objs.t- The causing Throwable.objs- Objects used for formatting the message.
-
GFLauncherException
- Parameters:
t- The causing Throwable.
-