List of usage examples for javax.security.sasl SaslException getMessage
public String getMessage()
From source file:org.globus.mds.gsi.jndi.SaslClientWrapper.java
public Object getNegotiatedProperty(String propName) { try {/*from w w w. j a va2s.c o m*/ return client.getNegotiatedProperty(propName); } catch (com.sun.security.sasl.preview.SaslException e) { throw new RuntimeException(e.getMessage()); } }