Changeset 850
- Timestamp:
- 09/23/06 11:00:01 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/source/org/kolaka/freecast/net/StunClient.java
r516 r850 122 122 timeout = timeoutAddValue; 123 123 } else { 124 throw new IOException("Node is not capable of udp communication."); 124 IOException exception = new IOException("Node is not capable of udp communication"); 125 exception.initCause(ste); 126 throw exception; 125 127 } 126 128 } catch (Exception e) {
