HomeSort by relevance Sort by last modified time
    Searched defs:SaslException (Results 1 - 3 of 3) sorted by null

  /external/smack/src/org/apache/harmony/javax/security/sasl/
SaslException.java 22 public class SaslException extends IOException {
31 public SaslException() {
35 public SaslException(String detail) {
39 public SaslException(String detail, Throwable ex) {
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
Sasl4Test.java 33 import javax.security.sasl.SaslException;
97 * throws SaslException when parameters (protocol, cbh,
103 public void testCreateServer01() throws SaslException {
121 fail("SaslException should be thrown when CallbackHandler is wrong");
122 } catch (SaslException e) {
127 fail("SaslException should be thrown when mechanisms is wrong");
128 } catch (SaslException e) {
132 fail("SaslException should be thrown when protocol is null");
133 } catch (SaslException e) {
146 public void testCreateServer02() throws SaslException {
    [all...]
Sasl3Test.java 38 import javax.security.sasl.SaslException;
100 * throws SaslException when parameters (protocol, cbh, mechanisms) are
105 public void testCreateClient01() throws SaslException {
124 fail("SaslException should be thrown when CallbackHandler is wrong");
125 } catch (SaslException e) {
131 fail("SaslException should be thrown when mechanisms is wrong");
132 } catch (SaslException e) {
137 fail("SaslException should be thrown when protocol is null");
138 } catch (SaslException e) {
151 public void testCreateClient02() throws SaslException {
    [all...]

Completed in 75 milliseconds