ProcessExecutorExceptionpublic 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);
|
|