Home | History | Annotate | Download | only in ssl

Lines Matching refs:tCause

35     private static Throwable tCause = new Throwable("Throwable for exception");
79 SSLException sE = new SSLException(tCause);
81 String toS = tCause.toString();
87 assertEquals("getCause() must return ".concat(tCause.toString()), sE.getCause(), tCause);
122 SSLException sE = new SSLException(null, tCause);
124 String toS = tCause.toString();
130 assertEquals("getCause() must return ".concat(tCause.toString()), sE
131 .getCause(), tCause);
142 sE = new SSLException(msgs[i], tCause);
144 String toS = tCause.toString();
154 assertEquals("getCause() must return ".concat(tCause.toString()),
155 sE.getCause(), tCause);