Home | History | Annotate | Download | only in net

Lines Matching refs:BindException

20 import java.net.BindException;
25 * java.net.BindException#BindException()
28 // Test for method java.net.BindException()
30 throw new BindException();
31 } catch (BindException e) {
34 fail("Exception during BindException test" + e.toString());
40 * java.net.BindException#BindException(java.lang.String)
43 // Test for method java.net.BindException(java.lang.String)
45 throw new BindException("Some error message");
46 } catch (BindException e) {
49 fail("Exception during BindException test : " + e.getMessage());