Changeset 1077


Ignore:
Timestamp:
02/15/13 15:25:08 (11 years ago)
Author:
pharms
Message:
  • prevented findbugs warnings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-htmlmonitor/src/main/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlGUIElementManager.java

    r1076 r1077  
    1515package de.ugoe.cs.autoquest.htmlmonitor; 
    1616 
     17import java.io.UnsupportedEncodingException; 
    1718import java.security.MessageDigest; 
     19import java.security.NoSuchAlgorithmException; 
    1820import java.util.HashMap; 
    1921import java.util.LinkedList; 
     
    216218            return Base64.encodeBase64String(md.digest()); 
    217219        } 
    218         catch (Exception e) { 
     220        catch (UnsupportedEncodingException e) { 
    219221            throw new IllegalStateException("Java VM does not support this code"); 
    220222        } 
     223        catch (NoSuchAlgorithmException e) { 
     224            throw new IllegalStateException("Java VM does not support this code"); 
     225        } 
    221226    } 
    222227 
Note: See TracChangeset for help on using the changeset viewer.