Update of /cvsroot/beepcore-java/beepcore-java/tls/org/beepcore/beep/profile/tls/jsse
In directory sc8-pr-cvs1:/tmp/cvs-serv8175/tls/org/beepcore/beep/profile/tls/jsse
Modified Files:
TLSProfileJSSE.java
Log Message:
Added exception chaining for exceptions that were being remapped
Index: TLSProfileJSSE.java
===================================================================
RCS file: /cvsroot/beepcore-java/beepcore-java/tls/org/beepcore/beep/profile/tls/jsse/TLSProfileJSSE.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** TLSProfileJSSE.java 30 Oct 2003 14:30:45 -0000 1.10
--- TLSProfileJSSE.java 7 Nov 2003 23:01:34 -0000 1.11
***************
*** 3,6 ****
--- 3,7 ----
*
* Copyright (c) 2001 Invisible Worlds, Inc. All rights reserved.
+ * Copyright (c) 2003 Huston Franklin. All rights reserved.
*
* The contents of this file are subject to the Blocks Public License (the
***************
*** 502,506 ****
log.error(e);
! throw new BEEPException(e.getMessage());
}
}
--- 503,507 ----
log.error(e);
! throw new BEEPException(e);
}
}
***************
*** 694,698 ****
} catch (javax.net.ssl.SSLException e) {
log.error(e);
! throw new BEEPException(e.getMessage());
} catch (java.io.IOException e) {
log.error(e);
--- 695,699 ----
} catch (javax.net.ssl.SSLException e) {
log.error(e);
! throw new BEEPException(e);
} catch (java.io.IOException e) {
log.error(e);
|