Home | History | Annotate | Download | only in ssl

Lines Matching refs:tCause

47     static Throwable tCause = new Throwable("Throwable for exception");
91 SSLException tE = new SSLException(tCause);
93 String toS = tCause.toString();
102 assertEquals("getCause() must return ".concat(tCause.toString()),
103 tE.getCause(), tCause);
139 SSLException tE = new SSLException(null, tCause);
141 String toS = tCause.toString();
150 assertEquals("getCause() must return ".concat(tCause.toString()),
151 tE.getCause(), tCause);
163 tE = new SSLException(msgs[i], tCause);
165 String toS = tCause.toString();
180 .concat(tCause.toString()), tE.getCause(), tCause);