Class ProcessFailureException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.eclipse.cdt.core.templateengine.process.ProcessFailureException
-
- All Implemented Interfaces:
java.io.Serializable
public class ProcessFailureException extends java.lang.Exception- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProcessFailureException(java.lang.String msg)Constructor based on the message.ProcessFailureException(java.lang.String msg, java.lang.Throwable cause)Constructor based on the message and cause.ProcessFailureException(java.lang.String msg, java.lang.Throwable cause, java.util.List<org.eclipse.core.runtime.IStatus> statuses)ProcessFailureException(java.lang.String msg, java.util.List<org.eclipse.core.runtime.IStatus> statuses)Constructor based on the message and causes.ProcessFailureException(java.lang.Throwable cause)Constructor based on the message and cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<org.eclipse.core.runtime.IStatus>getStatuses()Returns the Statuses.
-
-
-
Constructor Detail
-
ProcessFailureException
public ProcessFailureException(java.lang.String msg)
Constructor based on the message.- Parameters:
msg-
-
ProcessFailureException
public ProcessFailureException(java.lang.Throwable cause)
Constructor based on the message and cause.- Parameters:
cause-
-
ProcessFailureException
public ProcessFailureException(java.lang.String msg, java.lang.Throwable cause)Constructor based on the message and cause.- Parameters:
msg-cause-
-
ProcessFailureException
public ProcessFailureException(java.lang.String msg, java.util.List<org.eclipse.core.runtime.IStatus> statuses)Constructor based on the message and causes.- Parameters:
msg-statuses-
-
ProcessFailureException
public ProcessFailureException(java.lang.String msg, java.lang.Throwable cause, java.util.List<org.eclipse.core.runtime.IStatus> statuses)
-
-