Show
Ignore:
Timestamp:
09/04/10 09:06:26 (21 months ago)
Author:
stefan
Message:

added error popup

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/jlatexeditor/JLatexEditorJFrame.java

    r834 r835  
    10171017        results = SVN.getInstance().update(getMainEditor().getFile().getParentFile()); 
    10181018      } catch (Exception exception) { 
    1019         statusBar.showMessage("SVN update failed", "SVN update failed: " + exception.getMessage()); 
     1019        exception.printStackTrace(); 
     1020        statusBar.showTextError("SVN update failed", "SVN update failed: " + exception.getMessage()); 
    10201021        return; 
    10211022      } 
     
    10501051          result = SVN.getInstance().commit(getMainEditor().getFile().getParentFile(), message); 
    10511052        } catch (Exception exception) { 
     1053          exception.printStackTrace(); 
    10521054          statusBar.showMessage("SVN update failed", "SVN update failed: " + exception.getMessage()); 
    10531055          return;