Changeset 850

Show
Ignore:
Timestamp:
09/23/06 11:00:01 (2 years ago)
Author:
alban
Message:

added init cause to IOException

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/source/org/kolaka/freecast/net/StunClient.java

    r516 r850  
    122122                                        timeout = timeoutAddValue; 
    123123                                } 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; 
    125127                                } 
    126128                        } catch (Exception e) {