FileDocCategorySizeDatePackage
ProcessExecutorException.javaAPI DocGlassfish v2 API3120Fri May 04 22:32:58 BST 2007com.sun.ejb.codegen

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