public PHPUIStatus(int code, String message, Throwable throwable) {
super(IStatus.ERROR, PHPeclipsePlugin.getPluginId(), code, message, throwable);
}
-
+
+ public static IStatus createError(int code, Throwable throwable) {
+ String message= throwable.getMessage();
+ if (message == null) {
+ message= throwable.getClass().getName();
+ }
+ return new PHPUIStatus(IStatus.ERROR, code, message, throwable);
+ }
+
public static IStatus createError(int code, String message, Throwable throwable) {
return new PHPUIStatus(IStatus.ERROR, code, message, throwable);
}