com.sun.enterprise.admin.launcher
Class GFLauncherException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sun.enterprise.admin.launcher.GFLauncherException
- All Implemented Interfaces:
- Serializable
public class GFLauncherException
- extends Exception
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:
- Serialized Form
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
GFLauncherException
public GFLauncherException(String msg)
- Parameters:
msg - The message is either pointing at a I18N key in the resource
bundle or will be treated as a plain string.
GFLauncherException
public GFLauncherException(String msg,
Object... objs)
- 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
public GFLauncherException(String msg,
Throwable t)
- 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
public GFLauncherException(String msg,
Throwable t,
Object... objs)
- 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
public GFLauncherException(Throwable t)
- Parameters:
t - The causing Throwable.
Copyright © 2012. All Rights Reserved.