Skip to content

Commit

Permalink
proper error on clean
Browse files Browse the repository at this point in the history
  • Loading branch information
JPMoresmau committed Mar 7, 2012
1 parent 3ee0b7a commit d98edfd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Expand Up @@ -117,7 +117,7 @@ protected void execute(IProgressMonitor arg0) throws CoreException,
} catch (InterruptedException ie){
// noop
}catch (InvocationTargetException ie){
BuildWrapperPlugin.logError(ie.getLocalizedMessage(), ie.getCause());
BuildWrapperPlugin.logError(BWText.error_clean, ie.getCause());
}

}
Expand Down
Expand Up @@ -33,6 +33,7 @@ public class BWText extends NLS {
public static String error_noexe;
public static String error_derived;
public static String error_refreshLocal;
public static String error_clean;

public static String outline_job_name;
public static String editor_job_name;
Expand Down
Expand Up @@ -16,6 +16,7 @@ error_gettingFlags = Error getting saved flags from project
error_noexe = No buildwrapper executable defined
error_derived = Cannot set derived status on build-wrapper folder
error_refreshLocal = Error refreshing resource
error_clean = Error cleaning project

job_build=Building project {0}
job_synchronize=Synchronizing project {0}
Expand Down

0 comments on commit d98edfd

Please sign in to comment.