Changeset 1077 for trunk/autoquest-htmlmonitor/src/main/java/de/ugoe/cs
- Timestamp:
- 02/15/13 15:25:08 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-htmlmonitor/src/main/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlGUIElementManager.java
r1076 r1077 15 15 package de.ugoe.cs.autoquest.htmlmonitor; 16 16 17 import java.io.UnsupportedEncodingException; 17 18 import java.security.MessageDigest; 19 import java.security.NoSuchAlgorithmException; 18 20 import java.util.HashMap; 19 21 import java.util.LinkedList; … … 216 218 return Base64.encodeBase64String(md.digest()); 217 219 } 218 catch ( Exception e) {220 catch (UnsupportedEncodingException e) { 219 221 throw new IllegalStateException("Java VM does not support this code"); 220 222 } 223 catch (NoSuchAlgorithmException e) { 224 throw new IllegalStateException("Java VM does not support this code"); 225 } 221 226 } 222 227
Note: See TracChangeset
for help on using the changeset viewer.