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:
- java.io.Serializable
public class GFLauncherException
- extends java.lang.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 |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
GFLauncherException
public GFLauncherException(java.lang.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(java.lang.String msg,
java.lang.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(java.lang.String msg,
java.lang.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(java.lang.String msg,
java.lang.Throwable t,
java.lang.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(java.lang.Throwable t)
- Parameters:
t - The causing Throwable.
Copyright © 2012 GlassFish Community. All Rights Reserved.