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
-
-
Constructor Summary
Constructors Constructor Description GFLauncherException(String msg)
GFLauncherException(String msg, Object... objs)
GFLauncherException(String msg, Throwable t)
GFLauncherException(String msg, Throwable t, Object... objs)
GFLauncherException(Throwable t)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
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.
-
-