FileDocCategorySizeDatePackage
ProcessExecutorException.javaAPI DocGlassfish v2 API3186Fri May 04 22:34:44 BST 2007com.sun.enterprise.diagnostics.collect

ProcessExecutorException

public class ProcessExecutorException extends Exception

Fields Summary
private static final com.sun.enterprise.util.i18n.StringManager
localStrings
Constructors Summary
ProcessExecutorException(String key, String defalt)

		super(localStrings.getStringWithDefault(key, defalt));
	
ProcessExecutorException(String key, String defalt, Object[] objs)

		super(localStrings.getStringWithDefault(key, defalt, objs));
	
ProcessExecutorException(String key, String defalt, Throwable t)

		super(localStrings.getStringWithDefault(key, defalt) 
				+ " -- " + t.getMessage(), t);
	
ProcessExecutorException(String key, String defalt, Object[] objs, Throwable t)

		super(localStrings.getStringWithDefault(key, defalt, objs) 
				+ " -- " + t.getMessage(), t);

             
    
Methods Summary