com.sun.enterprise.admin.launcher
Class GFLauncherException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by 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

Constructor Summary
GFLauncherException(java.lang.String msg)
           
GFLauncherException(java.lang.String msg, java.lang.Object... objs)
           
GFLauncherException(java.lang.String msg, java.lang.Throwable t)
           
GFLauncherException(java.lang.String msg, java.lang.Throwable t, java.lang.Object... objs)
           
GFLauncherException(java.lang.Throwable t)
           
 
Method Summary
 
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
 

Constructor Detail

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.